diff options
| author | Sascha Schumann <sas@php.net> | 2000-11-02 15:47:02 +0000 |
|---|---|---|
| committer | Sascha Schumann <sas@php.net> | 2000-11-02 15:47:02 +0000 |
| commit | 43ff395b65234ebc606549720b24387ec5a79d06 (patch) | |
| tree | e8dc1e802a3fbfca7fea3b38b229dd805eea89ba /ext/session | |
| parent | 9866d899e926c971980fd13ccaa9ab5e83f17b90 (diff) | |
| download | php-git-43ff395b65234ebc606549720b24387ec5a79d06.tar.gz | |
Const'ify part of sapi_request_info.
query_string, post_data, path_translated, request_uri, auth_user,
auth_password and argv0 are modified, so they cannot become const.
Diffstat (limited to 'ext/session')
| -rw-r--r-- | ext/session/session.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/session/session.c b/ext/session/session.c index 1ed71dace0..ffe7cd89c0 100644 --- a/ext/session/session.c +++ b/ext/session/session.c @@ -641,7 +641,7 @@ static void strcat_gmt(char *ubuf, time_t *when) static void last_modified(void) { - char *path; + const char *path; struct stat sb; char buf[MAX_STR + 1]; SLS_FETCH(); |
