aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1999-12-29 18:19:14 +0000
committerEric S. Raymond <esr@thyrsus.com>1999-12-29 18:19:14 +0000
commit8cc0aaca364b59bc5ffe7ea99e54361a5e8627fa (patch)
treecc3355d557f3b7abe5ccd06a703ca0aa7cd60584
parent2ba847e20cce7ec586ac58e63900b3da100190fd (diff)
downloadfetchmail-8cc0aaca364b59bc5ffe7ea99e54361a5e8627fa.tar.gz
fetchmail-8cc0aaca364b59bc5ffe7ea99e54361a5e8627fa.tar.bz2
fetchmail-8cc0aaca364b59bc5ffe7ea99e54361a5e8627fa.zip
Translation updates.
svn path=/trunk/; revision=2694
-rw-r--r--NEWS3
-rw-r--r--configure.in2
-rw-r--r--driver.c4
3 files changed, 8 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 557e16e8..d9d28e6d 100644
--- a/NEWS
+++ b/NEWS
@@ -11,6 +11,9 @@ a Certifying Authority we recognize?).
* Ken Estes's patch to check for unreachable UIDL file due to bad NFS mount.
* Jorge Godoy's replacement pt_BR.po and various minor translation fixes.
+* Javier Kohen's replacement for es.po.
+* Munechika SUMIKAWA's patch to make IPv6 version build when POP2 is enabled.
+* Russian translation removed; it was badly garbled.
fetchmail-5.2.2 (Sun Dec 26 09:31:07 EST 1999), 18365 lines:
* Arrange for fetchmail to restart itself quietly when the rc file is touched.
diff --git a/configure.in b/configure.in
index fc0218a7..1aff940b 100644
--- a/configure.in
+++ b/configure.in
@@ -72,7 +72,7 @@ fi
# Arnaldo Carvalho de Melo <acme@conectiva.com.br>
# Sat Nov 7 15:39:03 EDT 1998
-ALL_LINGUAS="cs es fr pl pt_BR ru"
+ALL_LINGUAS="cs es fr pl pt_BR"
AM_GNU_GETTEXT
diff --git a/driver.c b/driver.c
index ee42282a..1623f4da 100644
--- a/driver.c
+++ b/driver.c
@@ -581,7 +581,11 @@ static int readheaders(int sock,
* forward it to the user so he or she will have some clue
* that things have gone awry.
*/
+#if INET6_ENABLE
+ if (strncmp(protocol->service, "pop2", 4))
+#else /* INET6_ENABLE */
if (protocol->port != 109)
+#endif /* INET6_ENABLE */
#endif /* POP2_ENABLE */
if (num == 1 && !strncasecmp(line, "X-IMAP:", 7)) {
free(line);