]> Pileus Git - ~andy/fetchmail/commitdiff
Fix one rewwrite bug.
authorEric S. Raymond <esr@thyrsus.com>
Tue, 27 Oct 1998 23:16:42 +0000 (23:16 -0000)
committerEric S. Raymond <esr@thyrsus.com>
Tue, 27 Oct 1998 23:16:42 +0000 (23:16 -0000)
svn path=/trunk/; revision=2141

rfc822.c

index 5c989cd94f0c779ce1464eb40c6e087b247c167d..5e4f24d6cfb9783e029bd46e32f9eb650ff81577 100644 (file)
--- a/rfc822.c
+++ b/rfc822.c
@@ -29,7 +29,9 @@ const char *host;     /* server hostname */
 {
     char *from, *cp, last_nws = '\0', *parens_from = NULL;
     int parendepth, state, has_bare_name_part, has_host_part;
+#ifndef TESTMAIN
     int addresscount = 1;
+#endif /* TESTMAIN */
 
     if (strncasecmp("From: ", buf, 6)
        && strncasecmp("To: ", buf, 4)
@@ -52,7 +54,7 @@ const char *host;     /* server hostname */
 #ifndef TESTMAIN
     if (outlevel >= O_DEBUG)
        error_build(0, 0, "About to rewrite %s", buf);
-#else
+
     /* make room to hack the address; buf must be malloced */
     for (cp = buf; *cp; cp++)
        if (*cp == ',' || isspace(*cp))