diff options
author | Dan McGee <dan@archlinux.org> | 2009-09-19 01:29:22 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2009-09-19 01:29:22 +0200 |
commit | 44cddb351b05bd629202b7cf9294c71852a542a9 (patch) | |
tree | 3478d76efec1c3b383d41e9cb9d4ab3b58d43d8e /src | |
parent | ed9d459ee2e0f44ad6365b2027db1486363b649e (diff) | |
download | pacman-44cddb351b05bd629202b7cf9294c71852a542a9.tar.gz pacman-44cddb351b05bd629202b7cf9294c71852a542a9.tar.xz |
Kill -F option for good in option parsing
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/pacman/pacman.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c index 5298d662..16990957 100644 --- a/src/pacman/pacman.c +++ b/src/pacman/pacman.c @@ -379,7 +379,7 @@ static int parseargs(int argc, char *argv[]) {0, 0, 0, 0} }; - while((opt = getopt_long(argc, argv, "RUFQSTr:b:vkhscVfmnoldepqituwygz", opts, &option_index))) { + while((opt = getopt_long(argc, argv, "RUQSTr:b:vkhscVfmnoldepqituwygz", opts, &option_index))) { alpm_list_t *list = NULL, *item = NULL; /* lists for splitting strings */ if(opt < 0) { |