From 435aa84fb080bb114d425233b99732ce8399203a Mon Sep 17 00:00:00 2001 From: Juan RP Date: Tue, 15 Nov 2011 10:21:12 +0100 Subject: [PATCH] xbps-{bin,repo}: unbreak the 'show' target, sigh. --- bin/xbps-bin/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/xbps-bin/util.c b/bin/xbps-bin/util.c index 796e8387..8fa86592 100644 --- a/bin/xbps-bin/util.c +++ b/bin/xbps-bin/util.c @@ -132,7 +132,7 @@ show_pkg_info(prop_dictionary_t dict) obj = prop_dictionary_get_keysym(dict, keysym); /* ignore run_depends, it's shown via 'show-deps' */ if (strcmp(keyname, "run_depends") == 0) - break; + continue; print_value_obj(keyname, obj, false); }