summaryrefslogtreecommitdiff
path: root/conf.c
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2009-08-17 22:00:02 +0200
committerGravatar waker <wakeroid@gmail.com>2009-08-17 22:00:02 +0200
commitea16b847607d9115adbdc7050a4e6ad95359bac9 (patch)
tree283d6906107afbb7b76a7e26adb210c9c09c5550 /conf.c
parentb7bb7c8c3b61db9ba129615f355bc4af4200f5dd (diff)
config updates
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;