From 3f22aca00ced07da3749090011bbab209bfecfb1 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Tue, 19 Aug 2014 16:59:25 +0200 Subject: [PATCH] xbps-query: fix an obvious tyop that broke -RX. --- bin/xbps-query/show-deps.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/xbps-query/show-deps.c b/bin/xbps-query/show-deps.c index 0364e66f..5ae379f0 100644 --- a/bin/xbps-query/show-deps.c +++ b/bin/xbps-query/show-deps.c @@ -198,9 +198,9 @@ show_pkg_revdeps(struct xbps_handle *xhp, const char *pkg, bool repomode) const char *pkgdep; if (repomode) - revdeps = xbps_pkgdb_get_pkg_revdeps(xhp, pkg); - else revdeps = xbps_rpool_get_pkg_revdeps(xhp, pkg); + else + revdeps = xbps_pkgdb_get_pkg_revdeps(xhp, pkg); if (revdeps == NULL) return ENOENT;