diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/configreader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configreader.h b/include/configreader.h index 667ef84d0..da712713b 100644 --- a/include/configreader.h +++ b/include/configreader.h @@ -152,7 +152,7 @@ public: return def; for (const auto& [enumkey, enumval] : enumvals) - if (stdalgo::string::equalsci(val, enumkey)) + if (strcasecmp(val.c_str(), enumkey) == 0) return enumval; // Unfortunately we have to iterate this twice. |
