diff options
author | Sascha Schumann <sas@php.net> | 2003-02-11 00:42:14 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2003-02-11 00:42:14 +0000 |
commit | 5e601732a34e7128013ff2fd2e5985d5e1712481 (patch) | |
tree | c2183e270c76c26b3b2478437a38d285fcb1e070 /ext/session/php_session.h | |
parent | 5336e060164e94d4b0cfa62c226829c796c75f96 (diff) | |
download | php-git-5e601732a34e7128013ff2fd2e5985d5e1712481.tar.gz |
use appropiate prefixes in the ps_module structure so we don't clash
with syscalls
Diffstat (limited to 'ext/session/php_session.h')
-rw-r--r-- | ext/session/php_session.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ext/session/php_session.h b/ext/session/php_session.h index 05a74c4ed0..72b67c6a53 100644 --- a/ext/session/php_session.h +++ b/ext/session/php_session.h @@ -35,14 +35,14 @@ char *php_session_create_id(PS_CREATE_SID_ARGS); typedef struct ps_module_struct { - const char *name; - int (*open)(PS_OPEN_ARGS); - int (*close)(PS_CLOSE_ARGS); - int (*read)(PS_READ_ARGS); - int (*write)(PS_WRITE_ARGS); - int (*destroy)(PS_DESTROY_ARGS); - int (*gc)(PS_GC_ARGS); - char *(*create_sid)(PS_CREATE_SID_ARGS); + const char *s_name; + int (*s_open)(PS_OPEN_ARGS); + int (*s_close)(PS_CLOSE_ARGS); + int (*s_read)(PS_READ_ARGS); + int (*s_write)(PS_WRITE_ARGS); + int (*s_destroy)(PS_DESTROY_ARGS); + int (*s_gc)(PS_GC_ARGS); + char *(*s_create_sid)(PS_CREATE_SID_ARGS); } ps_module; #define PS_GET_MOD_DATA() *mod_data |