diff options
| author | Zeev Suraski <zeev@php.net> | 1999-06-11 09:23:00 +0000 |
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 1999-06-11 09:23:00 +0000 |
| commit | 1798a0183a962342948bd9110435994d87853a8b (patch) | |
| tree | 15263717d49a83ac2d4d2230030c27ace9fc91a1 /ext/session/mod_files.c | |
| parent | c1f75b6fda70a9f127f61fe2568dcd6aad56be13 (diff) | |
| download | php-git-1798a0183a962342948bd9110435994d87853a8b.tar.gz | |
* Fix a buglet in the session module
* Make some renames in the session module - avoid having a function called 'delete'
so that we don't piss any C++ compilers. Also rename the {startup,shutdown}_globals
to {startup,shutdown}_session_globals, so that they're a bit less general names,
and made them static.
* Remove uselss variables
Diffstat (limited to 'ext/session/mod_files.c')
| -rw-r--r-- | ext/session/mod_files.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/session/mod_files.c b/ext/session/mod_files.c index 88c2fb6a39..1ac35fea30 100644 --- a/ext/session/mod_files.c +++ b/ext/session/mod_files.c @@ -165,7 +165,7 @@ PS_WRITE_FUNC(files) return SUCCESS; } -PS_DELETE_FUNC(files) +PS_DESTROY_FUNC(files) { char buf[MAXPATHLEN]; PS_FILES_DATA; |
