]> granicus.if.org Git - php/commitdiff
Use C style comments, per the CODING_STANDARDS
authorSam Ruby <rubys@php.net>
Fri, 31 Mar 2000 00:53:45 +0000 (00:53 +0000)
committerSam Ruby <rubys@php.net>
Fri, 31 Mar 2000 00:53:45 +0000 (00:53 +0000)
sapi/servlet/servlet.c

index c1deeb6f3b6716e092aa235fb18783876af050fb..5142fca1e82d79503699f1e2f2411d33080edbe9 100644 (file)
@@ -368,9 +368,11 @@ JNIEXPORT void JNICALL Java_net_php_servlet_send
 #ifdef VIRTUAL_DIR
        file_handle.handle.fp = php_fopen_primary_script();
 #else
-       // The java runtime doesn't like the working directory to be
-       // changed, so save it and change it back as quickly as possible
-       // in the hopes that Java doesn't notice.
+       /*
+        * The java runtime doesn't like the working directory to be
+        * changed, so save it and change it back as quickly as possible
+        * in the hopes that Java doesn't notice.
+        */
        getcwd(cwd,MAXPATHLEN);
        file_handle.handle.fp = php_fopen_primary_script();
        chdir(cwd);