summaryrefslogtreecommitdiff
path: root/lib/rpmds.c
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2007-10-09 14:52:01 +0300
committerPanu Matilainen <pmatilai@redhat.com>2007-10-09 14:52:01 +0300
commit0eb7deabf2364e0c2671090a1f774c06a9217c1e (patch)
treed5bc18c2b57e28fb0e068e2f6f4a98f9e1257455 /lib/rpmds.c
parent56366e3890a913c43642132340e2b7c6292e1227 (diff)
downloadrpm-0eb7deabf2364e0c2671090a1f774c06a9217c1e.tar.gz
rpm-0eb7deabf2364e0c2671090a1f774c06a9217c1e.tar.bz2
rpm-0eb7deabf2364e0c2671090a1f774c06a9217c1e.zip
Replace all uses of RPMMESS_WARNING with RPMLOG_WARNING
Diffstat (limited to 'lib/rpmds.c')
-rw-r--r--lib/rpmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rpmds.c b/lib/rpmds.c
index fc8cfe57e..d6946a9e9 100644
--- a/lib/rpmds.c
+++ b/lib/rpmds.c
@@ -799,7 +799,7 @@ int rpmdsCompare(const rpmds A, const rpmds B)
sense = rpmvercmp(aE, bE);
else if (aE && *aE && atol(aE) > 0) {
if (!B->nopromote) {
- int lvl = (_rpmds_unspecified_epoch_noise ? RPMMESS_WARNING : RPMLOG_DEBUG);
+ int lvl = (_rpmds_unspecified_epoch_noise ? RPMLOG_WARNING : RPMLOG_DEBUG);
rpmlog(lvl, _("The \"B\" dependency needs an epoch (assuming same epoch as \"A\")\n\tA = \"%s\"\tB = \"%s\"\n"),
aDepend, bDepend);
sense = 0;