Module Name: othersrc
Committed By: lukem
Date: Sun Apr 9 06:49:34 UTC 2023
Modified Files:
othersrc/usr.bin/tnftp: ChangeLog NEWS configure.ac
Log Message:
tnftp 20230409 release
Changes since tnftp 20210827
* Validate SSL certificates by default, disabled with
FTPSSLNOVERIFY=1 in the environment, or option sslnoverify.
* Add netrc processing to fetch-mode (URL on command line)
to enable options and autologin via netrc.
* Handle relative URLs in fetch.
* Improve formatting of manual page.
* Update to NetBSD-ftp 20230225.
To generate a diff of this commit:
cvs rdiff -u -r1.78 -r1.79 othersrc/usr.bin/tnftp/ChangeLog
cvs rdiff -u -r1.16 -r1.17 othersrc/usr.bin/tnftp/NEWS
cvs rdiff -u -r1.45 -r1.46 othersrc/usr.bin/tnftp/configure.ac
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.78 othersrc/usr.bin/tnftp/ChangeLog:1.79
--- othersrc/usr.bin/tnftp/ChangeLog:1.78 Fri Aug 27 02:29:39 2021
+++ othersrc/usr.bin/tnftp/ChangeLog Sun Apr 9 06:49:34 2023
@@ -1,4 +1,24 @@
-$NetBSD: ChangeLog,v 1.78 2021/08/27 02:29:39 lukem Exp $
+$NetBSD: ChangeLog,v 1.79 2023/04/09 06:49:34 lukem Exp $
+
+Sun Apr 9 06:45:06 UTC 2023
+
+ * Release as "tnftp 20230409".
+
+ * Use better terminology.
+
+ * Merge NetBSD ftp from 20210826 to 20230226:
+ * Add option sslnoverify to control validation of SSL
+ certificates.
+ * Add netrc processing to fetch-mode (URL on command line)
+ to enable options and autologin via netrc.
+ * Fix SSL cleanup in some error paths.
+ * Support SSL certificate validation by default.
+ FTPSSLNOVERIFY=1 in the environment to disable validation.
+ * Handle relative URLs.
+ * Improve ftp(1) markup.
+ * Fix -? in a more portable manner.
+ * Equivalent to "NetBSD-ftp 20230225" with documentation
+ and portability fixes.
Fri Aug 27 02:06:34 UTC 2021
@@ -53,7 +73,7 @@ Sun Jul 5 11:18:52 UTC 2020 lukem
* Release as "tnftp 20200705".
- * Provide dummy source in libnetbsd to avoid linker errors
+ * Provide placeholder source in libnetbsd to avoid linker errors
if no functions are replaced.
* Only replace glob if GLOB_BRACE and GLOB_TILDE aren't available.
Index: othersrc/usr.bin/tnftp/NEWS
diff -u othersrc/usr.bin/tnftp/NEWS:1.16 othersrc/usr.bin/tnftp/NEWS:1.17
--- othersrc/usr.bin/tnftp/NEWS:1.16 Fri Aug 27 02:29:39 2021
+++ othersrc/usr.bin/tnftp/NEWS Sun Apr 9 06:49:34 2023
@@ -1,6 +1,20 @@
-$NetBSD: NEWS,v 1.16 2021/08/27 02:29:39 lukem Exp $
+$NetBSD: NEWS,v 1.17 2023/04/09 06:49:34 lukem Exp $
-This is tnftp version 20210827.
+This is tnftp version 20230409.
+
+Changes in tnftp 20210827 to 20230409:
+
+ Validate SSL certificates by default, disabled with
+ FTPSSLNOVERIFY=1 in the environment, or option sslnoverify.
+
+ Add netrc processing to fetch-mode (URL on command line)
+ to enable options and autologin via netrc.
+
+ Handle relative URLs in fetch.
+
+ Improve formatting of manual page.
+
+ Update to NetBSD-ftp 20230225.
Changes in tnftp 20200705 to 20210827:
Index: othersrc/usr.bin/tnftp/configure.ac
diff -u othersrc/usr.bin/tnftp/configure.ac:1.45 othersrc/usr.bin/tnftp/configure.ac:1.46
--- othersrc/usr.bin/tnftp/configure.ac:1.45 Sun Apr 9 01:18:28 2023
+++ othersrc/usr.bin/tnftp/configure.ac Sun Apr 9 06:49:34 2023
@@ -1,15 +1,15 @@
-# $NetBSD: configure.ac,v 1.45 2023/04/09 01:18:28 lukem Exp $
+# $NetBSD: configure.ac,v 1.46 2023/04/09 06:49:34 lukem Exp $
#
# Process this file with autoconf to produce a configure script.
-AC_INIT([tnftp], [20210827], [[email protected]])
+AC_INIT([tnftp], [20230409], [[email protected]])
AC_PREREQ([2.69])
AC_COPYRIGHT([
Copyright (c) 1999-2023 The NetBSD Foundation, Inc.
All rights reserved.
])
-AC_REVISION([$Revision: 1.45 $])
+AC_REVISION([$Revision: 1.46 $])
AS_SHELL_SANITIZE()