Skip to content

Commit 0d7957b

Browse files
committed
Bug #20433
1 parent 671fff2 commit 0d7957b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ext/standard/file.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@ php_meta_tags_token php_next_meta_token(php_meta_tags_data * TSRMLS_DC);
112112
typedef struct {
113113
int pclose_ret;
114114
size_t def_chunk_size;
115-
int auto_detect_line_endings;
116-
int default_socket_timeout;
115+
long auto_detect_line_endings;
116+
long default_socket_timeout;
117117
char *user_agent;
118118
char *user_stream_current_filename; /* for simple recursion protection */
119119
} php_file_globals;

main/php_globals.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ struct _php_core_globals {
7777
zend_bool display_errors;
7878
zend_bool display_startup_errors;
7979
zend_bool log_errors;
80-
int log_errors_max_len;
80+
long log_errors_max_len;
8181
zend_bool ignore_repeated_errors;
8282
zend_bool ignore_repeated_source;
8383
zend_bool report_memleaks;

0 commit comments

Comments
 (0)