From 1c7ab650bf7acfdd94ee386c84dccc8d5cb157b6 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Tue, 26 Sep 2000 08:06:45 +0000 Subject: Bug fixes and internationalization improvements. svn path=/trunk/; revision=2967 --- rfc822.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'rfc822.c') diff --git a/rfc822.c b/rfc822.c index de6008bf..5315f1b6 100644 --- a/rfc822.c +++ b/rfc822.c @@ -14,6 +14,7 @@ #include "config.h" #include "fetchmail.h" +#include "i18n.h" #define HEADER_END(p) ((p)[0] == '\n' && ((p)[1] != ' ' && (p)[1] != '\t')) @@ -53,7 +54,7 @@ const unsigned char *host; /* server hostname */ #ifndef TESTMAIN if (outlevel >= O_DEBUG) - report_build(stdout, "About to rewrite %s", buf); + report_build(stdout, _("About to rewrite %s"), buf); /* make room to hack the address; buf must be malloced */ for (cp = buf; *cp; cp++) @@ -180,7 +181,7 @@ const unsigned char *host; /* server hostname */ #ifndef TESTMAIN if (outlevel >= O_DEBUG) - report_complete(stdout, "Rewritten version is %s\n", buf); + report_complete(stdout, _("Rewritten version is %s\n"), buf); #endif /* TESTMAIN */ return(buf); } -- cgit v1.2.3