From: Dmitry Stogov Date: Tue, 12 Dec 2017 16:01:10 +0000 (+0300) Subject: typo X-Git-Tag: php-7.3.0alpha1~817 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=76e4c8ba73c558fa1222a0733baaac975ad920ac;p=php typo --- diff --git a/main/php_variables.c b/main/php_variables.c index 0bbabcdfaf..c22859f957 100644 --- a/main/php_variables.c +++ b/main/php_variables.c @@ -534,7 +534,7 @@ static zend_always_inline int valid_environment_name(const char *name, const cha const char *s; for (s = name; s < end; s++) { - if (*s == ' ' | *s == '.' || *s == '[') { + if (*s == ' ' || *s == '.' || *s == '[') { return 0; } }