index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Chantry Xavier <shiningxc@gmail.com> | 2008-01-15 00:48:31 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-01-14 21:38:36 -0600 |
commit | 307f4d73015ee9fda6ae8c76d8bad14c3a48fb6d (patch) | |
tree | 23810d984568c801a147ecfd00bee46e8e53ccc7 | |
parent | fd86c62db856cea7cdd8edac2e721543dd1ebf04 (diff) |
-rw-r--r-- | src/pacman/remove.c | 3 |
diff --git a/src/pacman/remove.c b/src/pacman/remove.c index fde5c737..56837fa2 100644 --- a/src/pacman/remove.c +++ b/src/pacman/remove.c @@ -155,8 +155,7 @@ int pacman_remove(alpm_list_t *targets) list_display(_("Targets:"), lst); FREELIST(lst); /* get confirmation */ - if(!config->noconfirm - && yesno(_("\nDo you want to remove these packages? [Y/n] ")) == 0) { + if(yesno(_("\nDo you want to remove these packages? [Y/n] ")) == 0) { remove_cleanup(); FREELIST(finaltargs); return(1); |