]> Pileus Git - ~andy/fetchmail/commitdiff
Rely on our built-in logging.
authorEric S. Raymond <esr@thyrsus.com>
Sun, 11 Feb 2001 18:58:07 +0000 (18:58 -0000)
committerEric S. Raymond <esr@thyrsus.com>
Sun, 11 Feb 2001 18:58:07 +0000 (18:58 -0000)
svn path=/trunk/; revision=3059

cram.c

diff --git a/cram.c b/cram.c
index fb908832f5c6c23ceea90916d57c93f93c54423d..765be353ea3611fed4e4dd5a3a3778a7bfc37790 100644 (file)
--- a/cram.c
+++ b/cram.c
@@ -109,7 +109,7 @@ int do_cram_md5 (int sock, struct query *ctl)
               response, sizeof (response));
 
 #ifdef HAVE_SNPRINTF
-    snprintf (reply, sizeof (reply),
+    snprintf (reply, sizeof(reply),
 #else
     sprintf(reply,
 #endif
@@ -120,14 +120,7 @@ int do_cram_md5 (int sock, struct query *ctl)
               response[8], response[9], response[10], response[11],
               response[12], response[13], response[14], response[15]);
 
-    if (outlevel >= O_DEBUG) {
-        report (stdout, _("replying with %s\n"), reply);
-    }
-
     to64frombits (buf1, reply, strlen(reply));
-    if (outlevel >= O_MONITOR) {
-       report (stdout, "CRAM> %s\n", buf1);
-    }
 
     /* ship the authentication back, accept the server's responses */
     /* PMDF5.2 IMAP has a bug that requires this to be a single write */