summaryrefslogtreecommitdiff
path: root/conf.c
diff options
context:
space:
mode:
Diffstat (limited to 'conf.c')
-rw-r--r--conf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/conf.c b/conf.c
index 90a5f0a2..03c3a785 100644
--- a/conf.c
+++ b/conf.c
@@ -22,7 +22,7 @@ conf_load (void) {
int line = 0;
while (fgets (str, 1024, fp) != NULL) {
line++;
- if (str[0] == '#') {
+ if (str[0] == '#' || str[0] <= 0x20) {
continue;
}
uint8_t *p = (uint8_t *)str;