diff options
author | Nagy Gabor <ngaba@bibl.u-szeged.hu> | 2008-07-06 01:18:11 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-07-08 04:12:30 +0200 |
commit | 8856146d71cb4cc512b0cf3414fbc231635822d3 (patch) | |
tree | 5917c0597dae8c2a6f6dc6538843424a3037c45b /src | |
parent | 616b5967b8581d51f9e08dd4178c921eee617d4b (diff) | |
download | pacman-8856146d71cb4cc512b0cf3414fbc231635822d3.tar.gz pacman-8856146d71cb4cc512b0cf3414fbc231635822d3.tar.xz |
Swap parameters on PM_TRANS_CONV_INSTALL_IGNOREPKG callback function
PM_TRANS_CONV_INSTALL_IGNOREPKG callback function can get 2 params: foo, bar
in this order (packages), bar can be NULL.
Old API:
foo, NULL: Do you want to install foo from IgnorePkg?
foo, bar: foo requires bar from IgnorePkg. Do you want to install bar?
New API:
foo, bar: Do you want to install foo from IgnorePkg? (If bar!=NULL:) bar
requires it.
Signed-off-by: Nagy Gabor <ngaba@bibl.u-szeged.hu>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/pacman/callback.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pacman/callback.c b/src/pacman/callback.c index ff125c36..f968873f 100644 --- a/src/pacman/callback.c +++ b/src/pacman/callback.c @@ -254,8 +254,8 @@ void cb_trans_conv(pmtransconv_t event, void *data1, void *data2, if(data2) { /* TODO we take this route based on data2 being not null? WTF */ *response = yesno(1, _(":: %s requires installing %s from IgnorePkg/IgnoreGroup. Install anyway?"), - alpm_pkg_get_name(data1), - alpm_pkg_get_name(data2)); + alpm_pkg_get_name(data2), + alpm_pkg_get_name(data1)); } else { *response = yesno(1, _(":: %s is in IgnorePkg/IgnoreGroup. Install anyway?"), alpm_pkg_get_name(data1)); |