diff options
author | Dave Reisner <dreisner@archlinux.org> | 2011-10-28 09:14:06 -0400 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2011-10-28 09:14:06 -0400 |
commit | 47fd57041c010b3202e76942097a3385ea6ef695 (patch) | |
tree | 31bb62ea97503aa8da99c6bafaf7d7a587dc12b3 | |
parent | 4fc5efb6c299f9316a6a9d33a2fa6be8f14f88af (diff) | |
download | expac-47fd57041c010b3202e76942097a3385ea6ef695.tar.xz |
fix longopt for -Q
manpage documents it as --query, not --local.
-rw-r--r-- | expac.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -189,7 +189,7 @@ static int parse_options(int argc, char *argv[], alpm_handle_t *handle) { {"group", required_argument, 0, 'g'}, {"help", no_argument, 0, 'h'}, {"file", no_argument, 0, 'p'}, - {"local", no_argument, 0, 'Q'}, + {"query", no_argument, 0, 'Q'}, {"sync", no_argument, 0, 'S'}, {"search", no_argument, 0, 's'}, {"timefmt", required_argument, 0, 't'}, |