Module Name: othersrc
Committed By: lukem
Date: Wed May 20 13:50:57 UTC 2009
Modified Files:
othersrc/usr.bin/tnftp: ChangeLog
Log Message:
Today's changes
To generate a diff of this commit:
cvs rdiff -u -r1.49 -r1.50 othersrc/usr.bin/tnftp/ChangeLog
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: othersrc/usr.bin/tnftp/ChangeLog
diff -u othersrc/usr.bin/tnftp/ChangeLog:1.49 othersrc/usr.bin/tnftp/ChangeLog:1.50
--- othersrc/usr.bin/tnftp/ChangeLog:1.49 Sat Dec 20 15:29:50 2008
+++ othersrc/usr.bin/tnftp/ChangeLog Wed May 20 13:50:57 2009
@@ -1,4 +1,46 @@
-$NetBSD: ChangeLog,v 1.49 2008/12/20 15:29:50 lukem Exp $
+$NetBSD: ChangeLog,v 1.50 2009/05/20 13:50:57 lukem Exp $
+
+
+Wed May 20 13:47:43 UTC 2009
+
+ * Release as "tnftp 20090520"
+
+ * Merge NetBSD ftp from 20070722 to 20090520. Changes:
+ - Only attempt to el_parse() a command unknown by the default
+ parser if editing is enabled.
+ Fixes PR 38589.
+ - Turn off the alarmtimer before resetting the SIGALRM handler
+ back to SIG_DFL.
+ Fixes PR 35630.
+ - Add epsv6 and epsv to disable extended passive mode for ipv6 or
+ both ipv4 and ipv6 respectively. This hack is due to our
+ friends a Juniper Networks who break epsv in ipv6.
+ Should be fixed in ScreenOS 6.2.X.
+ - Improve parsing of chunked transfer chunks per RFC2616:
+ - more stringent chunk-size parsing
+ - ignore optional trailing ';chunk-ext' stuff, instead of barfing
+ - detect EOF before final \r\n.
+ - Use the service name to getaddrinfo() (along with the host
+ name), so that features such as DNS Service Discovery have a
+ better chance of working.
+ Display the service name in various status & error messages.
+ - Don't getservbyname() the :port component of a URL; RFC 3986
+ says it's just an unsigned number, not a service name.
+ - Fix numerous WARNS=4 issues (-Wcast-qual -Wsign-compare).
+ - Fix -Wshadow issues
+ - Update copyrights
+ - Remove clause 3 and 4 from TNF licenses
+ - Rename HAVE_STRUCT_SOCKADDR_SA_LEN to
+ HAVE_STRUCT_SOCKADDR_IN_SIN_LEN to accurately reflect the
+ structure member being used.
+ - Use AF_INET instead of AF_UNSPEC as the default family if
+ !defined(INET6).
+
+ * configure improvements:
+ - Style tweaks.
+ - Use AC_LANG_PROGRAM() instead of AC_LANG_SOURCE()
+ - Add a check for strptime() requiring separators between
+ conversions, and use our replacement one if it does.
Sat Dec 20 15:28:24 UTC 2008 lukem