Fix inverted test in previous commit... sigh.
This commit is contained in:
parent
fa1d543dfa
commit
5eb6206c12
@ -63,7 +63,7 @@ xbps_pkg_find_conflicts(struct xbps_handle *xhp,
|
|||||||
(pkgd = xbps_pkgdb_get_virtualpkg(xhp, cfpkg))) {
|
(pkgd = xbps_pkgdb_get_virtualpkg(xhp, cfpkg))) {
|
||||||
prop_dictionary_get_cstring_nocopy(pkgd,
|
prop_dictionary_get_cstring_nocopy(pkgd,
|
||||||
"pkgver", &pkgver);
|
"pkgver", &pkgver);
|
||||||
if (strcmp(pkgver, repopkgver))
|
if (strcmp(pkgver, repopkgver) == 0)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
xbps_dbg_printf(xhp, "found conflicting installed "
|
xbps_dbg_printf(xhp, "found conflicting installed "
|
||||||
@ -82,7 +82,7 @@ xbps_pkg_find_conflicts(struct xbps_handle *xhp,
|
|||||||
(pkgd = xbps_find_virtualpkg_in_array(xhp, unsorted, cfpkg))) {
|
(pkgd = xbps_find_virtualpkg_in_array(xhp, unsorted, cfpkg))) {
|
||||||
prop_dictionary_get_cstring_nocopy(pkgd,
|
prop_dictionary_get_cstring_nocopy(pkgd,
|
||||||
"pkgver", &pkgver);
|
"pkgver", &pkgver);
|
||||||
if (strcmp(pkgver, repopkgver))
|
if (strcmp(pkgver, repopkgver) == 0)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
xbps_dbg_printf(xhp, "found conflicting pkgs in "
|
xbps_dbg_printf(xhp, "found conflicting pkgs in "
|
||||||
|
Loading…
Reference in New Issue
Block a user