diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-09-24 20:13:57 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-09-24 20:13:57 +0000 |
commit | a12da4ee65e0d140bbbcb811eef1cba93785ce35 (patch) | |
tree | c549258dcd9b8d2848da3135cb86d51c75138097 /netrc.c | |
parent | f5ece9304c6f778f8888860b50d431dca147074c (diff) | |
download | fetchmail-a12da4ee65e0d140bbbcb811eef1cba93785ce35.tar.gz fetchmail-a12da4ee65e0d140bbbcb811eef1cba93785ce35.tar.bz2 fetchmail-a12da4ee65e0d140bbbcb811eef1cba93785ce35.zip |
_( -> GT_(
svn path=/trunk/; revision=3478
Diffstat (limited to 'netrc.c')
-rw-r--r-- | netrc.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -214,11 +214,11 @@ parse_netrc (file) { #ifdef HAVE_ERROR error_at_line (0, file, ln, - _("warning: found \"%s\" before any host names"), + GT_("warning: found \"%s\" before any host names"), premature_token); #else fprintf (stderr, - _("%s:%d: warning: found \"%s\" before any host names\n"), + GT_("%s:%d: warning: found \"%s\" before any host names\n"), file, ln, premature_token); #endif premature_token = NULL; @@ -257,7 +257,7 @@ parse_netrc (file) else { - fprintf (stderr, _("%s:%d: warning: unknown token \"%s\"\n"), + fprintf (stderr, GT_("%s:%d: warning: unknown token \"%s\"\n"), file, ln, tok); } } |