File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 56
56
57
57
PHPAPI ZEND_DECLARE_MODULE_GLOBALS (ps )
58
58
59
- static int php_session_rfc1867_callback (unsigned int event , void * event_data , void * * extra );
60
- static int (* php_session_rfc1867_orig_callback )(unsigned int event , void * event_data , void * * extra );
59
+ static zend_result php_session_rfc1867_callback (unsigned int event , void * event_data , void * * extra );
60
+ static zend_result (* php_session_rfc1867_orig_callback )(unsigned int event , void * event_data , void * * extra );
61
61
static void php_session_track_init (void );
62
62
63
63
/* SessionHandler class */
@@ -97,8 +97,8 @@ zend_class_entry *php_session_update_timestamp_iface_entry;
97
97
98
98
#define APPLY_TRANS_SID (PS(use_trans_sid) && !PS(use_only_cookies))
99
99
100
- static int php_session_send_cookie (void );
101
- static int php_session_abort (void );
100
+ static zend_result php_session_send_cookie (void );
101
+ static zend_result php_session_abort (void );
102
102
103
103
/* Initialized in MINIT, readonly otherwise. */
104
104
static int my_module_number = 0 ;
You can’t perform that action at this time.
0 commit comments