split yesno() into yesno() and noyes() functions.
commitadc4078b8743a1437d44557dafea8619b1ce0fb1
authorXavier Chantry <shiningxc@gmail.com>
Wed, 20 Aug 2008 20:08:11 +0000 (20 22:08 +0200)
committerDan McGee <dan@archlinux.org>
Sat, 23 Aug 2008 14:22:34 +0000 (23 09:22 -0500)
tree6b6d03e5e9231fed33629ca3cf63a15e12593592
parent7865fb9af487f7ca043cab6e90c3aee0863e285b
split yesno() into yesno() and noyes() functions.

The yesno function had a preset argument for specifying the default answer :
yes or no.

However, in all our calls to yesno, only one used the default "no" answer.
Having to specify preset==1 for all the other cases was rather cumbersome.

To make this easier, this commit adds a noyes function, with the following
behavior :
yesno() : default answer is yes
noyes() : default answer is no

Signed-off-by: Xavier Chantry <shiningxc@gmail.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
src/pacman/callback.c
src/pacman/remove.c
src/pacman/sync.c
src/pacman/util.c
src/pacman/util.h