diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2000-09-26 08:06:45 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2000-09-26 08:06:45 +0000 |
commit | 1c7ab650bf7acfdd94ee386c84dccc8d5cb157b6 (patch) | |
tree | 35251d5737ab8cd2ab59721186c926f512b07bed /rfc822.c | |
parent | b64751301fa6367b81ce382b4c4dbca5c17a030b (diff) | |
download | fetchmail-1c7ab650bf7acfdd94ee386c84dccc8d5cb157b6.tar.gz fetchmail-1c7ab650bf7acfdd94ee386c84dccc8d5cb157b6.tar.bz2 fetchmail-1c7ab650bf7acfdd94ee386c84dccc8d5cb157b6.zip |
Bug fixes and internationalization improvements.
svn path=/trunk/; revision=2967
Diffstat (limited to 'rfc822.c')
-rw-r--r-- | rfc822.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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); } |