summaryrefslogtreecommitdiffstats
path: root/lib/libalpm
diff options
context:
space:
mode:
authorNagy Gabor <ngaba@bibl.u-szeged.hu>2007-10-26 16:37:47 +0200
committerDan McGee <dan@archlinux.org>2007-10-27 02:05:42 +0200
commit17f99a0f0042efeb4c5822a6446918f1ac852e32 (patch)
tree84ee7845e0b949c2f1948d31904f340b1ef0a1a1 /lib/libalpm
parentd903fc607ee2aa2527202f1e54a44be325eabe48 (diff)
downloadpacman-17f99a0f0042efeb4c5822a6446918f1ac852e32.tar.gz
pacman-17f99a0f0042efeb4c5822a6446918f1ac852e32.tar.xz
dependency error message fix in libalpm/remove.c
Normally you must never see that error message. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm')
-rw-r--r--lib/libalpm/remove.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/remove.c b/lib/libalpm/remove.c
index 734c365c..0ed4dd0a 100644
--- a/lib/libalpm/remove.c
+++ b/lib/libalpm/remove.c
@@ -120,7 +120,7 @@ int _alpm_remove_prepare(pmtrans_t *trans, pmdb_t *db, alpm_list_t **data)
}
} else {
_alpm_log(PM_LOG_ERROR, _("could not find %s in database -- skipping\n"),
- miss->depend.name);
+ miss->target);
}
}
FREELIST(lp);