From 76e4c8ba73c558fa1222a0733baaac975ad920ac Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Tue, 12 Dec 2017 19:01:10 +0300 Subject: typo --- main/php_variables.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/php_variables.c') 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; } } -- cgit v1.2.1