summaryrefslogtreecommitdiff
path: root/rpmio
diff options
context:
space:
mode:
authormarc <devnull@localhost>1995-12-27 16:31:14 +0000
committermarc <devnull@localhost>1995-12-27 16:31:14 +0000
commitd5addaa30bf2c9374eb45d648a287a1b435d3e03 (patch)
treef6a7d379ebdae55f372eaa92c69b1070feb1fef3 /rpmio
parent761d71df82d538f2d53db5d8e088e386a1d04fb8 (diff)
downloadrpm-d5addaa30bf2c9374eb45d648a287a1b435d3e03.tar.gz
rpm-d5addaa30bf2c9374eb45d648a287a1b435d3e03.tar.bz2
rpm-d5addaa30bf2c9374eb45d648a287a1b435d3e03.zip
fixed isVerbose()
CVS patchset: 84 CVS date: 1995/12/27 16:31:14
Diffstat (limited to 'rpmio')
-rw-r--r--rpmio/messages.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpmio/messages.c b/rpmio/messages.c
index 5c9a0112a..9afbac984 100644
--- a/rpmio/messages.c
+++ b/rpmio/messages.c
@@ -15,7 +15,7 @@ void setVerbosity(int level) {
int isVerbose(void)
{
- return (minLevel >= MESS_VERBOSE);
+ return (minLevel <= MESS_VERBOSE);
}
void message(int level, char * format, ...) {