thetaphi                Thu May 29 17:05:06 2003 EDT

  Modified files:              (Branch: PHP_4_3)
    /php4/sapi/nsapi    nsapi.c 
  Log:
  fix of incomplete windows fix
  
Index: php4/sapi/nsapi/nsapi.c
diff -u php4/sapi/nsapi/nsapi.c:1.28.2.9 php4/sapi/nsapi/nsapi.c:1.28.2.10
--- php4/sapi/nsapi/nsapi.c:1.28.2.9    Thu May 29 16:13:15 2003
+++ php4/sapi/nsapi/nsapi.c     Thu May 29 17:05:06 2003
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: nsapi.c,v 1.28.2.9 2003/05/29 20:13:15 thetaphi Exp $ */
+/* $Id: nsapi.c,v 1.28.2.10 2003/05/29 21:05:06 thetaphi Exp $ */
 
 /*
  * PHP includes
@@ -211,10 +211,10 @@
 /* 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
  */



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to