From: Uwe Schindler Date: Thu, 29 May 2003 21:05:06 +0000 (+0000) Subject: fix of incomplete windows fix X-Git-Tag: BEFORE_FD_REAPPLY~25 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c97e3bac2a461f0575d71c99874adea1a2a9f708;p=php fix of incomplete windows fix --- 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 */