From 261c9a958100e9a9aeda5d976788199ddbe182a2 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Fri, 28 Oct 2011 20:13:22 -0400 Subject: ignore -S and -Q options for -p. This is a little odd, but since -p has no meaning for -S, this is (for now) safe. --- expac.c | 40 +++++++++++++++++++--------------------- 1 file changed, 19 insertions(+), 21 deletions(-) (limited to 'expac.c') diff --git a/expac.c b/expac.c index 13f4a08..d36bd1e 100644 --- a/expac.c +++ b/expac.c @@ -597,33 +597,31 @@ int main(int argc, char *argv[]) { } /* ensure sane defaults */ - if (!dblist) { - if (localpkg) { - /* load each target as a package */ - for (i = targets; i; i = alpm_list_next(i)) { - alpm_pkg_t *pkg; - int err; - - err = alpm_pkg_load(handle, i->data, 0, - ALPM_SIG_PACKAGE|ALPM_SIG_PACKAGE_OPTIONAL, &pkg); - if (err) { - fprintf(stderr, "error: %s: %s\n", (const char*)i->data, - alpm_strerror(alpm_errno(handle))); - continue; - } - results = alpm_list_add(results, pkg); - } - } else { - local = true; - dblist = alpm_list_add(dblist, db_local); - } + if (!dblist && !localpkg) { + local = true; + dblist = alpm_list_add(dblist, db_local); } delim = delim ? delim : DEFAULT_DELIM; listdelim = listdelim ? listdelim : DEFAULT_LISTDELIM; timefmt = timefmt ? timefmt : DEFAULT_TIMEFMT; - if (!localpkg) { + if (localpkg) { + /* load each target as a package */ + for (i = targets; i; i = alpm_list_next(i)) { + alpm_pkg_t *pkg; + int err; + + err = alpm_pkg_load(handle, i->data, 0, + ALPM_SIG_PACKAGE|ALPM_SIG_PACKAGE_OPTIONAL, &pkg); + if (err) { + fprintf(stderr, "error: %s: %s\n", (const char*)i->data, + alpm_strerror(alpm_errno(handle))); + continue; + } + results = alpm_list_add(results, pkg); + } + } else { results = resolve_pkg(targets); if (!results) { ret = 1; -- cgit v1.2.3-54-g00ecf