summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2002-11-30 18:39:31 +0000
committerMarcus Boerger <helly@php.net>2002-11-30 18:39:31 +0000
commitbd45fa6a8f5b19d6f502a127a5c33fd0d2a58456 (patch)
tree5cea3d18b27787e1dd6c61fc116540e2e0a85f14
parent31ee5eca0d5b5228583989cc0380e7904fd428ad (diff)
downloadphp-git-bd45fa6a8f5b19d6f502a127a5c33fd0d2a58456.tar.gz
MFH: Bug #20433
-rw-r--r--ext/standard/file.h4
-rw-r--r--main/php_globals.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/ext/standard/file.h b/ext/standard/file.h
index fd2835d4a6..41a189cf09 100644
--- a/ext/standard/file.h
+++ b/ext/standard/file.h
@@ -112,8 +112,8 @@ php_meta_tags_token php_next_meta_token(php_meta_tags_data * TSRMLS_DC);
typedef struct {
int pclose_ret;
size_t def_chunk_size;
- int auto_detect_line_endings;
- int default_socket_timeout;
+ long auto_detect_line_endings;
+ long default_socket_timeout;
char *user_agent;
char *user_stream_current_filename; /* for simple recursion protection */
} php_file_globals;
diff --git a/main/php_globals.h b/main/php_globals.h
index bc34330a92..d793dcb312 100644
--- a/main/php_globals.h
+++ b/main/php_globals.h
@@ -77,7 +77,7 @@ struct _php_core_globals {
zend_bool display_errors;
zend_bool display_startup_errors;
zend_bool log_errors;
- int log_errors_max_len;
+ long log_errors_max_len;
zend_bool ignore_repeated_errors;
zend_bool ignore_repeated_source;
zend_bool report_memleaks;