index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Andrew Gregory <andrew.gregory.8@gmail.com> | 2018-01-13 11:49:57 -0500 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2018-01-18 13:42:57 +1000 |
commit | 0bbf9ddf9dff45346fb95bc6b6f1db8320551b6a (patch) | |
tree | 3363f4820c0578105740917974e9bc0c51d05853 | |
parent | e8462a4f88335b200ad0a1c5d96e05a44af7e67c (diff) |
-rw-r--r-- | src/pacman/conf.c | 13 | ||||
-rw-r--r-- | src/pacman/conf.h | 1 |
diff --git a/src/pacman/conf.c b/src/pacman/conf.c index a283d7f4..e4980ed2 100644 --- a/src/pacman/conf.c +++ b/src/pacman/conf.c @@ -1036,6 +1036,14 @@ static int _parse_directive(const char *file, int linenum, const char *name, } } +int parseconfigfile(const char *file) +{ + struct section_t section; + memset(§ion, 0, sizeof(struct section_t)); + pm_printf(ALPM_LOG_DEBUG, "config: attempting to read file %s\n", file); + return parse_ini(file, _parse_directive, §ion); +} + /** Parse a configuration file. * @param file path to the config file * @return 0 on success, non-zero on error @@ -1043,10 +1051,7 @@ static int _parse_directive(const char *file, int linenum, const char *name, int parseconfig(const char *file) { int ret; - struct section_t section; - memset(§ion, 0, sizeof(struct section_t)); - pm_printf(ALPM_LOG_DEBUG, "config: attempting to read file %s\n", file); - if((ret = parse_ini(file, _parse_directive, §ion))) { + if((ret = parseconfigfile(file))) { return ret; } pm_printf(ALPM_LOG_DEBUG, "config: finished parsing %s\n", file); diff --git a/src/pacman/conf.h b/src/pacman/conf.h index 53b44be6..e937051b 100644 --- a/src/pacman/conf.h +++ b/src/pacman/conf.h @@ -242,6 +242,7 @@ void config_repo_free(config_repo_t *repo); int config_set_arch(const char *arch); int parseconfig(const char *file); +int parseconfigfile(const char *file); #endif /* PM_CONF_H */ /* vim: set noet: */ |