diff options
| author | foobar <sniper@php.net> | 2005-08-08 14:25:05 +0000 |
|---|---|---|
| committer | foobar <sniper@php.net> | 2005-08-08 14:25:05 +0000 |
| commit | 0f2986fe9d53903bfb1bb2b8988055545b5fdb83 (patch) | |
| tree | 5f9d122848b4f79838c58440fe69f084c8e7cc2a /Zend/zend_API.c | |
| parent | c9103e18b0b68d06b8c79cd07e2f2cdb6a9307ea (diff) | |
| download | php-git-0f2986fe9d53903bfb1bb2b8988055545b5fdb83.tar.gz | |
- Show the dependancy name we could not find (req_mod is null here when it is not found :)
Diffstat (limited to 'Zend/zend_API.c')
| -rw-r--r-- | Zend/zend_API.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_API.c b/Zend/zend_API.c index e30d49193c..537cb9086e 100644 --- a/Zend/zend_API.c +++ b/Zend/zend_API.c @@ -1265,7 +1265,7 @@ ZEND_API int zend_startup_module_ex(zend_module_entry *module TSRMLS_DC) !req_mod->module_started) { efree(lcname); /* TODO: Check version relationship */ - zend_error(E_CORE_WARNING, "Cannot load module '%s' because required module '%s' is not loaded", module->name, req_mod->name); + zend_error(E_CORE_WARNING, "Cannot load module '%s' because required module '%s' is not loaded", module->name, dep->name); module->module_started = 0; return FAILURE; } |
