summaryrefslogtreecommitdiff
path: root/sapi/servlet/servlet.c
diff options
context:
space:
mode:
authorSam Ruby <rubys@php.net>2000-03-30 23:35:55 +0000
committerSam Ruby <rubys@php.net>2000-03-30 23:35:55 +0000
commit57b4e1a3ee03dcd08e1f6e2009d28ff722473af5 (patch)
tree2f6228e74a9a1db22f7cbc576831860f7cca7d2c /sapi/servlet/servlet.c
parent2b1daf73eb78dc4e9e4da3ebc2292ffa3c7f0656 (diff)
downloadphp-git-57b4e1a3ee03dcd08e1f6e2009d28ff722473af5.tar.gz
fix indentation (this project has tabstop=4!)
Diffstat (limited to 'sapi/servlet/servlet.c')
-rw-r--r--sapi/servlet/servlet.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sapi/servlet/servlet.c b/sapi/servlet/servlet.c
index 5cc680f91d..c1deeb6f3b 100644
--- a/sapi/servlet/servlet.c
+++ b/sapi/servlet/servlet.c
@@ -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);