diff options
author | Aurelien Foret <aurelien@archlinux.org> | 2005-03-20 12:28:07 +0000 |
---|---|---|
committer | Aurelien Foret <aurelien@archlinux.org> | 2005-03-20 12:28:07 +0000 |
commit | 1ace50e2a867f9a6e59dcaaa653a9fc51509f801 (patch) | |
tree | 16ca4b43d36343d6cbb1c2b054e8148b8534caee /src | |
parent | b01f38d7fd10b9a92a01ff758024ba65824214dd (diff) | |
download | pacman-1ace50e2a867f9a6e59dcaaa653a9fc51509f801.tar.xz |
removed a deprecated placeholder
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); |