summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2009-09-19 01:29:22 +0200
committerDan McGee <dan@archlinux.org>2009-09-19 01:29:22 +0200
commit44cddb351b05bd629202b7cf9294c71852a542a9 (patch)
tree3478d76efec1c3b383d41e9cb9d4ab3b58d43d8e
parented9d459ee2e0f44ad6365b2027db1486363b649e (diff)
downloadpacman-44cddb351b05bd629202b7cf9294c71852a542a9.tar.gz
pacman-44cddb351b05bd629202b7cf9294c71852a542a9.tar.xz
Kill -F option for good in option parsing
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r--src/pacman/pacman.c2
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) {