summaryrefslogtreecommitdiff
path: root/ext/standard/file.h
diff options
context:
space:
mode:
authorbugreportuser <37939393+bugreportuser@users.noreply.github.com>2019-09-12 12:44:08 -0600
committerChristoph M. Becker <cmbecker69@gmx.de>2019-09-14 18:46:09 +0200
commitfdcca930561babde7fe46cb51215ca9422dea09f (patch)
tree0a48dc3b8a7e8b246a247d90574ce5c6e9e1e86a /ext/standard/file.h
parent716518373f09a2848732d965446db458a154e2e4 (diff)
downloadphp-git-fdcca930561babde7fe46cb51215ca9422dea09f.tar.gz
Fix #78535: auto_detect_line_endings value not parsed as bool
Diffstat (limited to 'ext/standard/file.h')
-rw-r--r--ext/standard/file.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/file.h b/ext/standard/file.h
index 54df0936d3..70fbc798f5 100644
--- a/ext/standard/file.h
+++ b/ext/standard/file.h
@@ -119,7 +119,7 @@ php_meta_tags_token php_next_meta_token(php_meta_tags_data *);
typedef struct {
int pclose_ret;
size_t def_chunk_size;
- zend_long auto_detect_line_endings;
+ zend_bool auto_detect_line_endings;
zend_long default_socket_timeout;
char *user_agent; /* for the http wrapper */
char *from_address; /* for the ftp and http wrappers */