diff options
author | Christoph M. Becker <cmbecker69@gmx.de> | 2019-09-14 18:46:34 +0200 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2019-09-14 18:47:12 +0200 |
commit | 00ad365125df54d1776882e350c8d2b134511abd (patch) | |
tree | a3d6e82d9a8233e48cd9f1b72cae5ff852eec6a7 /ext/standard/file.h | |
parent | df982da5874856e3a4d6bbbefb8d3be97261a6cf (diff) | |
parent | fdcca930561babde7fe46cb51215ca9422dea09f (diff) | |
download | php-git-00ad365125df54d1776882e350c8d2b134511abd.tar.gz |
Merge branch 'PHP-7.2' into PHP-7.3
* PHP-7.2:
Fix #78535: auto_detect_line_endings value not parsed as bool
Diffstat (limited to 'ext/standard/file.h')
-rw-r--r-- | ext/standard/file.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/file.h b/ext/standard/file.h index b4e564f1c3..4fa040dc24 100644 --- a/ext/standard/file.h +++ b/ext/standard/file.h @@ -115,7 +115,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 */ |