diff --git a/src/command/FileCommands.cxx b/src/command/FileCommands.cxx index 8c5bbc50f..9df5b8b58 100644 --- a/src/command/FileCommands.cxx +++ b/src/command/FileCommands.cxx @@ -56,7 +56,7 @@ IsValidValue(const char *p) while (*p) { const char ch = *p++; - if ((unsigned char)ch >= 0x20) + if ((unsigned char)ch < 0x20) return false; }