From 7999d393e26b84ebe5b33fd40e1dbcfb2471d0ab Mon Sep 17 00:00:00 2001 From: Juan RP Date: Sat, 2 Jul 2011 23:44:51 +0200 Subject: [PATCH] xbps-bin: return ENODEV in missing dependencies, not 1. --- bin/xbps-bin/install.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/xbps-bin/install.c b/bin/xbps-bin/install.c index 4fcf72a9..6e8892ac 100644 --- a/bin/xbps-bin/install.c +++ b/bin/xbps-bin/install.c @@ -598,7 +598,7 @@ xbps_exec_transaction(bool yes, bool show_download_pkglist_url) /* missing packages */ array = xbps_transaction_missingdeps_get(); show_missing_deps(array); - rv = 1; + rv = errno; goto out; } rv = errno;