1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00

fix indentation (this project has tabstop=4!)

This commit is contained in:
Sam Ruby
2000-03-30 23:35:55 +00:00
parent 2b1daf73eb
commit 57b4e1a3ee

View File

@@ -368,9 +368,9 @@ 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);