aboutsummaryrefslogtreecommitdiff
path: root/configfile.c
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
Diffstat (limited to 'configfile.c')
-rw-r--r--configfile.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/configfile.c b/configfile.c
index e039109..5b0d880 100644
--- a/configfile.c
+++ b/configfile.c
@@ -39,9 +39,7 @@ static int read_config_line(FILE *f, struct strbuf *name, struct strbuf *value)
/* Skip comments and preceding spaces. */
for(;;) {
- if (c == EOF)
- return 0;
- else if (c == '#' || c == ';')
+ if (c == '#' || c == ';')
skip_line(f);
else if (!isspace(c))
break;