diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-10-26 15:02:50 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-10-26 15:02:50 +0000 |
commit | e4eadf53fd6fa9cce65e7b73249f66d337d0c847 (patch) | |
tree | a24f3d7564e39e70e1cc0c2db7eba5b973527a33 /rfc822.c | |
parent | 8f32f5842c6020a093ff65fed3372d0935b4a9e4 (diff) | |
download | fetchmail-e4eadf53fd6fa9cce65e7b73249f66d337d0c847.tar.gz fetchmail-e4eadf53fd6fa9cce65e7b73249f66d337d0c847.tar.bz2 fetchmail-e4eadf53fd6fa9cce65e7b73249f66d337d0c847.zip |
More instrumentation.
svn path=/trunk/; revision=2134
Diffstat (limited to 'rfc822.c')
-rw-r--r-- | rfc822.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -49,6 +49,9 @@ 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)) @@ -170,6 +173,10 @@ const char *host; /* server hostname */ } } +#ifndef TESTMAIN + if (outlevel >= O_DEBUG) + error_complete(0, 0, "Rewritten version is %s", buf); +#endif /* TESTMAIN */ return(buf); } |