Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/src/pacman/callback.c
diff options
context:
space:
mode:
authorOlivier Brunel <jjk@jjacky.com>2014-01-10 16:25:13 +0100
committerAllan McRae <allan@archlinux.org>2014-01-28 20:10:49 +1000
commit4e9d88aa05184e29368f1602b9fcb6a05d293095 (patch)
treee5d3de423bdbce560ce70b03fc408781f26eca69 /src/pacman/callback.c
parente65a752475797eb3e917858190a2679e9cd680b9 (diff)
Rename ALPM_EVENT_OPTDEP_REQUIRED to _OPTDEP_REMOVAL
Because this event is triggered when an optdepend for another package is being removed. Signed-off-by: Olivier Brunel <jjk@jjacky.com> Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'src/pacman/callback.c')
-rw-r--r--src/pacman/callback.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pacman/callback.c b/src/pacman/callback.c
index 8c0fab55..4b0f881a 100644
--- a/src/pacman/callback.c
+++ b/src/pacman/callback.c
@@ -247,7 +247,7 @@ void cb_event(alpm_event_t event, void *data1, void *data2)
printf(_("checking available disk space...\n"));
}
break;
- case ALPM_EVENT_OPTDEP_REQUIRED:
+ case ALPM_EVENT_OPTDEP_REMOVAL:
colon_printf(_("%s optionally requires %s\n"), alpm_pkg_get_name(data1),
alpm_dep_compute_string(data2));
break;