summaryrefslogtreecommitdiff
path: root/ext/session
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2000-05-27 16:38:49 +0000
committerAndi Gutmans <andi@php.net>2000-05-27 16:38:49 +0000
commit8c82566b48fc4ca837d83e1980f5cb681bb435ce (patch)
treee038e7d8ca7c12161e0e33730a17ad3be37b19d9 /ext/session
parent030c0fd415040239ea8323293bf143112d799c76 (diff)
downloadphp-git-8c82566b48fc4ca837d83e1980f5cb681bb435ce.tar.gz
- Fix problem in sessions module under Win32. Need to use ; as an options
- delimiter in save_path instead of :.
Diffstat (limited to 'ext/session')
-rw-r--r--ext/session/mod_files.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/session/mod_files.c b/ext/session/mod_files.c
index 32f511d18a..dc6d9081cd 100644
--- a/ext/session/mod_files.c
+++ b/ext/session/mod_files.c
@@ -199,7 +199,7 @@ PS_OPEN_FUNC(files)
PS_SET_MOD_DATA(data);
data->fd = -1;
- if ((p = strchr(save_path, ':'))) {
+ if ((p = strchr(save_path, ';'))) {
data->dirdepth = strtol(save_path, NULL, 10);
save_path = p + 1;
}