diff options
author | Aaron Griffin <aaron@archlinux.org> | 2007-02-23 02:10:56 +0000 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2007-02-23 02:10:56 +0000 |
commit | d584d8c06842cec99bff1e07b565ee0511cfade8 (patch) | |
tree | b1563526d705c6d52a061de93fe4c738effcceb2 /lib/libalpm/package.h | |
parent | c799433e423d5bdd6737b81483de82b9e98aed46 (diff) | |
download | pacman-d584d8c06842cec99bff1e07b565ee0511cfade8.tar.xz |
* Modified the handling and output w.r.t. IgnorePkg entries. -Sy always ignores
these packages, but -S explicitly asks for confirmation.
Diffstat (limited to 'lib/libalpm/package.h')
-rw-r--r-- | lib/libalpm/package.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/package.h b/lib/libalpm/package.h index 6ef8a8a6..820a476f 100644 --- a/lib/libalpm/package.h +++ b/lib/libalpm/package.h @@ -102,7 +102,7 @@ pmpkg_t* _alpm_pkg_new(const char *name, const char *version); pmpkg_t *_alpm_pkg_dup(pmpkg_t *pkg); void _alpm_pkg_free(void *data); int _alpm_pkg_cmp(const void *p1, const void *p2); -int alpm_pkg_compare_versions(pmpkg_t *pkgA, pmpkg_t *pkgB); +int alpm_pkg_compare_versions(pmpkg_t *local_pkg, pmpkg_t *pkg); pmpkg_t *_alpm_pkg_load(char *pkgfile); pmpkg_t *_alpm_pkg_isin(char *needle, alpm_list_t *haystack); int _alpm_pkg_splitname(char *target, char *name, char *version, int witharch); |