diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-09-24 18:01:26 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-09-24 18:01:26 +0000 |
commit | 784d8dfd28a5f37d1b1f29c592f0d7b99bb20794 (patch) | |
tree | cf21bf8cd6d2d56d77cb06aeee1c73260f3b901e | |
parent | e72123a74b3003d3b18f588d3b186951ffdc705e (diff) | |
download | fetchmail-784d8dfd28a5f37d1b1f29c592f0d7b99bb20794.tar.gz fetchmail-784d8dfd28a5f37d1b1f29c592f0d7b99bb20794.tar.bz2 fetchmail-784d8dfd28a5f37d1b1f29c592f0d7b99bb20794.zip |
Switch from _( to GT_( to avoid a conflict with openssh.
svn path=/trunk/; revision=3475
-rw-r--r-- | checkalias.c | 10 | ||||
-rw-r--r-- | cram.c | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/checkalias.c b/checkalias.c index 8525d24a..f8f8058b 100644 --- a/checkalias.c +++ b/checkalias.c @@ -168,15 +168,15 @@ int is_host_alias(const char *name, struct query *ctl) else if (((he_st = gethostbyname(ctl->server.truename)) != (struct hostent *)NULL) && ctl->server.checkalias) { if (outlevel >= O_DEBUG) - report(stdout, _("Checking if %s is really the same node as %s\n"),ctl->server.truename,name); + report(stdout, GT_("Checking if %s is really the same node as %s\n"),ctl->server.truename,name); if (is_ip_alias(ctl->server.truename,name) == TRUE) { if (outlevel >= O_DEBUG) - report(stdout, _("Yes, their IP addresses match\n")); + report(stdout, GT_("Yes, their IP addresses match\n")); goto match; } if (outlevel >= O_DEBUG) - report(stdout, _("No, their IP addresses don't match\n")); + report(stdout, GT_("No, their IP addresses don't match\n")); return(FALSE); } else @@ -196,7 +196,7 @@ int is_host_alias(const char *name, struct query *ctl) if (outlevel != O_SILENT) report_complete(stdout, "\n"); /* terminate the progress message */ report(stderr, - _("nameserver failure while looking for `%s' during poll of %s.\n"), + GT_("nameserver failure while looking for `%s' during poll of %s.\n"), name, ctl->server.pollname); ctl->errcount++; break; @@ -222,7 +222,7 @@ int is_host_alias(const char *name, struct query *ctl) case TRY_AGAIN: /* temporary error on authoritative server */ default: report(stderr, - _("nameserver failure while looking for `%s' during poll of %s.\n"), + GT_("nameserver failure while looking for `%s' during poll of %s.\n"), name, ctl->server.pollname); ctl->errcount++; break; @@ -92,7 +92,7 @@ int do_cram_md5 (int sock, char *command, struct query *ctl, char *strip) len = from64tobits (msg_id, respdata); if (len < 0) { - report (stderr, _("could not decode BASE64 challenge\n")); + report (stderr, GT_("could not decode BASE64 challenge\n")); return PS_AUTHFAIL; } else if (len < sizeof (msg_id)) { msg_id[len] = 0; @@ -100,7 +100,7 @@ int do_cram_md5 (int sock, char *command, struct query *ctl, char *strip) msg_id[sizeof (msg_id)-1] = 0; } if (outlevel >= O_DEBUG) { - report (stdout, _("decoded as %s\n"), msg_id); + report (stdout, GT_("decoded as %s\n"), msg_id); } /* The client makes note of the data and then responds with a string |