diff --git a/src/app/CFGParameterValue.h b/src/app/CFGParameterValue.h index 740526d..b795ce8 100644 --- a/src/app/CFGParameterValue.h +++ b/src/app/CFGParameterValue.h @@ -24,7 +24,7 @@ public: { if(_value == NULL) return false; - return strcmp(_value,"true") == 0 || strcmp(_value,"TRUE") == 0 ? true : false; + return strcasecmp(_value,"true") == 0 ? true : false; } const char *getParameter() const{return _parameter == NULL ? "" : _parameter;} bool isQuotedParameter()const{return _quotedParameter;}