mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00
Use C style comments, per the CODING_STANDARDS
This commit is contained in:
parent
24302e89e5
commit
8a64f51101
1 changed files with 5 additions and 3 deletions
|
@ -368,9 +368,11 @@ JNIEXPORT void JNICALL Java_net_php_servlet_send
|
||||||
#ifdef VIRTUAL_DIR
|
#ifdef VIRTUAL_DIR
|
||||||
file_handle.handle.fp = php_fopen_primary_script();
|
file_handle.handle.fp = php_fopen_primary_script();
|
||||||
#else
|
#else
|
||||||
// The java runtime doesn't like the working directory to be
|
/*
|
||||||
// changed, so save it and change it back as quickly as possible
|
* The java runtime doesn't like the working directory to be
|
||||||
// in the hopes that Java doesn't notice.
|
* changed, so save it and change it back as quickly as possible
|
||||||
|
* in the hopes that Java doesn't notice.
|
||||||
|
*/
|
||||||
getcwd(cwd,MAXPATHLEN);
|
getcwd(cwd,MAXPATHLEN);
|
||||||
file_handle.handle.fp = php_fopen_primary_script();
|
file_handle.handle.fp = php_fopen_primary_script();
|
||||||
chdir(cwd);
|
chdir(cwd);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue