diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/pacman/conf.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/pacman/conf.c b/src/pacman/conf.c index bc6b214f..fa0cb323 100644 --- a/src/pacman/conf.c +++ b/src/pacman/conf.c @@ -127,7 +127,7 @@ int parseconfig(char *file) vprint("config: usesyslog\n"); } else { ERR(NL, "config: line %d: syntax error\n", linenum); - return(1); + return(1); } } else { strtrim(ptr); @@ -220,9 +220,6 @@ int parseconfig(char *file) } else if (!strcmp(key, "PROXYPORT")) { pmo_proxyport = (unsigned short)atoi(ptr); vprint("config: proxyport: %u\n", pmo_proxyport); - } else if (!strcmp(key, "INCLUDE")) { - /* ORE - TBD */ } else { ERR(NL, "config: line %d: syntax error\n", linenum); return(1); |