index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Allan McRae <allan@archlinux.org> | 2011-06-29 15:46:49 +1000 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2011-06-29 15:46:49 +1000 |
commit | f1bb56cebfda9b11ea02754d325ff659014e2caa (patch) | |
tree | 289b4d9648077a4b2245728e11a8e9469b0957b5 /lib/libalpm/handle.c | |
parent | 3bb469d558b5ad778f87a1427a45ec4190ba4155 (diff) |
-rw-r--r-- | lib/libalpm/handle.c | 8 |
diff --git a/lib/libalpm/handle.c b/lib/libalpm/handle.c index bb2ce50c..62b2d9ab 100644 --- a/lib/libalpm/handle.c +++ b/lib/libalpm/handle.c @@ -224,7 +224,7 @@ alpm_list_t SYMEXPORT *alpm_option_get_ignorepkgs(alpm_handle_t *handle) return handle->ignorepkg; } -alpm_list_t SYMEXPORT *alpm_option_get_ignoregrps(alpm_handle_t *handle) +alpm_list_t SYMEXPORT *alpm_option_get_ignoregroups(alpm_handle_t *handle) { CHECK_HANDLE(handle, return NULL); return handle->ignoregrp; @@ -521,14 +521,14 @@ int SYMEXPORT alpm_option_remove_ignorepkg(alpm_handle_t *handle, const char *pk return 0; } -int SYMEXPORT alpm_option_add_ignoregrp(alpm_handle_t *handle, const char *grp) +int SYMEXPORT alpm_option_add_ignoregroup(alpm_handle_t *handle, const char *grp) { CHECK_HANDLE(handle, return -1); handle->ignoregrp = alpm_list_add(handle->ignoregrp, strdup(grp)); return 0; } -int SYMEXPORT alpm_option_set_ignoregrps(alpm_handle_t *handle, alpm_list_t *ignoregrps) +int SYMEXPORT alpm_option_set_ignoregroups(alpm_handle_t *handle, alpm_list_t *ignoregrps) { CHECK_HANDLE(handle, return -1); if(handle->ignoregrp) FREELIST(handle->ignoregrp); @@ -536,7 +536,7 @@ int SYMEXPORT alpm_option_set_ignoregrps(alpm_handle_t *handle, alpm_list_t *ign return 0; } -int SYMEXPORT alpm_option_remove_ignoregrp(alpm_handle_t *handle, const char *grp) +int SYMEXPORT alpm_option_remove_ignoregroup(alpm_handle_t *handle, const char *grp) { char *vdata = NULL; CHECK_HANDLE(handle, return -1); |