From: Daniel Kahn Gillmor Date: Fri, 13 Jun 2008 17:11:54 +0000 (-0400) Subject: invert the sense of the loglevel test. duh. X-Git-Tag: monkeysphere_0.1-1~35 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=2fa88e2fde0f56774c76e5cbdc8ea2c67849f3c0;p=monkeysphere.git invert the sense of the loglevel test. duh. --- diff --git a/src/keytrans/gnutls-helpers.c b/src/keytrans/gnutls-helpers.c index c6e4979..d5f3719 100644 --- a/src/keytrans/gnutls-helpers.c +++ b/src/keytrans/gnutls-helpers.c @@ -15,11 +15,13 @@ /* for exit() */ #include +/* higher levels allow more frivolous error messages through. + this is set with the MONKEYSPHERE_DEBUG variable */ static int loglevel = 0; void err(int level, const char* fmt, ...) { va_list ap; - if (level < loglevel) + if (level > loglevel) return; va_start(ap, fmt); vfprintf(stderr, fmt, ap);