summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2002-11-30 18:36:17 +0000
committerMarcus Boerger <helly@php.net>2002-11-30 18:36:17 +0000
commit0d7957bc15addb72129f49eb1f8092812773bfd3 (patch)
treee4d13d4e5679d200a35a46e316e84dc1c63e0d04
parent671fff2fde6b2bead914f1cf6951fc4bd3617c07 (diff)
downloadphp-git-0d7957bc15addb72129f49eb1f8092812773bfd3.tar.gz
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 c8890aadbf..43fe602f2c 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;