index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Andrew Gregory <andrew.gregory.8@gmail.com> | 2014-11-29 18:02:55 -0500 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2014-12-18 22:22:35 +1000 |
commit | df36fe2e79d5a5490b89c259bef7a1f150cff575 (patch) | |
tree | 45a5ace2e28ffc13939eb8a6c112e43a8f7f2e50 /lib/libalpm/handle.c | |
parent | 768b65e93472914c52cc1159c4932d4fc1438c14 (diff) |
-rw-r--r-- | lib/libalpm/handle.c | 5 |
diff --git a/lib/libalpm/handle.c b/lib/libalpm/handle.c index 5ef619ea..fa999489 100644 --- a/lib/libalpm/handle.c +++ b/lib/libalpm/handle.c @@ -527,6 +527,11 @@ int SYMEXPORT alpm_option_remove_noupgrade(alpm_handle_t *handle, const char *pk return _alpm_option_strlist_rem(handle, &(handle->noupgrade), pkg); } +int SYMEXPORT alpm_option_match_noupgrade(alpm_handle_t *handle, const char *path) +{ + return _alpm_fnmatch_patterns(handle->noupgrade, path); +} + int SYMEXPORT alpm_option_add_noextract(alpm_handle_t *handle, const char *path) { return _alpm_option_strlist_add(handle, &(handle->noextract), path); |