aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--FICS/settings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/FICS/settings.cpp b/FICS/settings.cpp
index 9a3e53b..cfdfd87 100644
--- a/FICS/settings.cpp
+++ b/FICS/settings.cpp
@@ -112,7 +112,7 @@ is_setting_ok(const char *value, enum setting_type type)
break;
}
case STYPE_STRING: {
- if (strpbrk(value, " \f\n\r\t\v\"") != NULL) {
+ if (strpbrk(value, "\f\n\r\t\v\"") != NULL) {
warnx("%s: illegal characters in string", __func__);
return false;
}