diff options
author | Uwe Schindler <thetaphi@php.net> | 2003-05-29 21:05:29 +0000 |
---|---|---|
committer | Uwe Schindler <thetaphi@php.net> | 2003-05-29 21:05:29 +0000 |
commit | 499f902a30fd8353aae4e8e9b105ec9d251401fa (patch) | |
tree | bd8ca02427b69ddff4386290543359f6d696b1a7 /sapi/nsapi | |
parent | ac2606bf58dd05d3b00af80605e63eff811309b8 (diff) | |
download | php-git-499f902a30fd8353aae4e8e9b105ec9d251401fa.tar.gz |
fix of incomplete windows fix
Diffstat (limited to 'sapi/nsapi')
-rw-r--r-- | sapi/nsapi/nsapi.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sapi/nsapi/nsapi.c b/sapi/nsapi/nsapi.c index 4ba9bbaf36..382010763c 100644 --- a/sapi/nsapi/nsapi.c +++ b/sapi/nsapi/nsapi.c @@ -211,10 +211,10 @@ PHP_INI_END() /* newer servers hide this functions from the programmer so redefine the functions dynamically thanks to Chris Elving from Sun for the function declarations */ -int (*nsapi_servact_uri2path)(Session *, Request *) = NULL; -int (*nsapi_servact_pathchecks)(Session *, Request *) = NULL; -int (*nsapi_servact_fileinfo)(Session *, Request *) = NULL; -int (*nsapi_servact_service)(Session *, Request *) = NULL; +int (*nsapi_servact_uri2path)(Session *sn, Request *rq) = NULL; +int (*nsapi_servact_pathchecks)(Session *sn, Request *rq) = NULL; +int (*nsapi_servact_fileinfo)(Session *sn, Request *rq) = NULL; +int (*nsapi_servact_service)(Session *sn, Request *rq) = NULL; /* {{{ php_nsapi_init_dynamic_symbols */ |