diff options
author | Andrei Zmievski <andrei@php.net> | 2000-06-26 18:05:55 +0000 |
---|---|---|
committer | Andrei Zmievski <andrei@php.net> | 2000-06-26 18:05:55 +0000 |
commit | 4010b422ddca37f110a47f17863f9114cc50b7a6 (patch) | |
tree | f5f5d2daf750da0c7a99dbd827e4df14173a71d6 /sapi/nsapi/nsapi.c | |
parent | bcb308c522e2a6ae495fca931a448e353e945b9e (diff) | |
download | php-git-4010b422ddca37f110a47f17863f9114cc50b7a6.tar.gz |
Separate plain name returned by php_sapi_module() and pretty name
used for output.
Diffstat (limited to 'sapi/nsapi/nsapi.c')
-rw-r--r-- | sapi/nsapi/nsapi.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sapi/nsapi/nsapi.c b/sapi/nsapi/nsapi.c index 6b4bf1a6a7..4e664b6559 100644 --- a/sapi/nsapi/nsapi.c +++ b/sapi/nsapi/nsapi.c @@ -322,7 +322,8 @@ sapi_nsapi_register_server_variables(zval *track_vars_array ELS_DC SLS_DC PLS_DC } static sapi_module_struct sapi_module = { - "NSAPI", /* name */ + "nsapi", /* name */ + "NSAPI", /* pretty name */ php_module_startup, /* startup */ php_module_shutdown_wrapper, /* shutdown */ |