From d4f78116e0c3bc300098b13f7d8bd328edb13cd1 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Thu, 5 Apr 2007 16:37:23 +0000 Subject: Fix running of pre_remove and Post_remove pkgname was undefined previously when this was called, fixed. Patch from Roman Kyrylych . --- lib/libalpm/remove.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libalpm/remove.c b/lib/libalpm/remove.c index 03b23d25..291eb7a0 100644 --- a/lib/libalpm/remove.c +++ b/lib/libalpm/remove.c @@ -284,10 +284,10 @@ int _alpm_remove_commit(pmtrans_t *trans, pmdb_t *db) break; } - snprintf(scriptlet, PATH_MAX, "%s%s-%s/install", db->path, - pkgname, alpm_pkg_get_version(info)); /* get the name now so we can use it after package is removed */ pkgname = alpm_pkg_get_name(info); + snprintf(scriptlet, PATH_MAX, "%s%s-%s/install", db->path, + pkgname, alpm_pkg_get_version(info)); if(trans->type != PM_TRANS_TYPE_UPGRADE) { EVENT(trans, PM_TRANS_EVT_REMOVE_START, info, NULL); -- cgit v1.2.3-24-g4f1b