index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Andrew Gregory <andrew.gregory.8@gmail.com> | 2014-04-26 12:34:27 -0400 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2015-01-21 14:27:47 +1000 |
commit | ea96b567221e1426c6f6ab2b31891d1301fd00f4 (patch) | |
tree | eb7542cdc2732299f080082f927d1b0064f1289e /src | |
parent | e7d8e2b5acfbe9169c809e1e8fd31d22b7c365c5 (diff) |
-rw-r--r-- | src/pacman/ini.c | 6 |
diff --git a/src/pacman/ini.c b/src/pacman/ini.c index 7291e971..affab54a 100644 --- a/src/pacman/ini.c +++ b/src/pacman/ini.c @@ -103,12 +103,6 @@ int parse_ini(const char *file, ini_parser_fn cb, void *data) strtrim(key); strtrim(value); - if(key == NULL) { - pm_printf(ALPM_LOG_ERROR, _("config file %s, line %d: syntax error in config file- missing key.\n"), - file, linenum); - ret = 1; - goto cleanup; - } if((ret = cb(file, linenum, section_name, key, value, data)) != 0) { goto cleanup; } |