summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/keytrans/gnutls-helpers.c4
1 files changed, 3 insertions, 1 deletions
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 <unistd.h>
+/* 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);