summaryrefslogtreecommitdiff
path: root/mod_php4.c
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>1999-07-25 15:06:50 +0000
committerSVN Migration <svn@php.net>1999-07-25 15:06:50 +0000
commit5bfa70242fb1f579e33cd02d0a4088387176ba7c (patch)
tree71c86814c79b7885ea40beb22e7d63097394a770 /mod_php4.c
parentb1617d8ac3bad1ace92085194e24cff8cbdbaf31 (diff)
downloadphp-git-BEFORE_NEW_OPERATOR_FIX.tar.gz
This commit was manufactured by cvs2svn to create tagBEFORE_NEW_OPERATOR_FIX
'BEFORE_NEW_OPERATOR_FIX'.
Diffstat (limited to 'mod_php4.c')
-rw-r--r--mod_php4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod_php4.c b/mod_php4.c
index acfe531f20..30e1bc93df 100644
--- a/mod_php4.c
+++ b/mod_php4.c
@@ -425,7 +425,7 @@ CONST_PREFIX char *php_apache_flag_handler_ex(cmd_parms *cmd, HashTable *conf, c
{
char bool_val[2];
- if (!strcmp(arg2, "On")) {
+ if (!strcasecmp(arg2, "On")) {
bool_val[0] = '1';
} else {
bool_val[0] = '0';