diff options
Diffstat (limited to 'src/util/string.h')
-rw-r--r-- | src/util/string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/string.h b/src/util/string.h index 6c48adeb3..d8cedc3e8 100644 --- a/src/util/string.h +++ b/src/util/string.h @@ -146,7 +146,7 @@ inline std::string lowercase(const std::string &s) inline bool is_yes(const std::string &s) { std::string s2 = lowercase(trim(s)); - if(s2 == "y" || s2 == "yes" || s2 == "true" || s2 == "1") + if(s2 == "y" || s2 == "yes" || s2 == "true" || atoi(s2.c_str()) != 0) return true; return false; } |