Module Name: othersrc
Committed By: lukem
Date: Sat Sep 23 04:50:32 UTC 2023
Modified Files:
othersrc/usr.bin/tnftp: configure.ac tnftp.h
Log Message:
editorial fixes
To generate a diff of this commit:
cvs rdiff -u -r1.48 -r1.49 othersrc/usr.bin/tnftp/configure.ac
cvs rdiff -u -r1.39 -r1.40 othersrc/usr.bin/tnftp/tnftp.h
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/configure.ac
diff -u othersrc/usr.bin/tnftp/configure.ac:1.48 othersrc/usr.bin/tnftp/configure.ac:1.49
--- othersrc/usr.bin/tnftp/configure.ac:1.48 Sun May 7 18:32:11 2023
+++ othersrc/usr.bin/tnftp/configure.ac Sat Sep 23 04:50:32 2023
@@ -1,4 +1,4 @@
-# $NetBSD: configure.ac,v 1.48 2023/05/07 18:32:11 lukem Exp $
+# $NetBSD: configure.ac,v 1.49 2023/09/23 04:50:32 lukem Exp $
#
# Process this file with autoconf to produce a configure script.
@@ -336,7 +336,7 @@ AC_CHECK_FUNCS([getcwd gethostbyaddr get
AS_IF([test "$ac_cv_func_getpgrp" = yes], [AC_FUNC_GETPGRP])
AS_IF([test "$ac_cv_func_strptime" = yes], [AC_CHECK_DECLS([strptime])])
-# Use system glob if GLOB_BRACE and GLOB_TILDE are available.
+# Use system glob if required GLOB_ flags are available.
#
use_local_glob=yes
AC_CHECK_HEADER([glob.h],
@@ -346,7 +346,7 @@ AC_CHECK_HEADER([glob.h],
int f = GLOB_BRACE|GLOB_NOCHECK|GLOB_TILDE;
]])],
[AC_MSG_RESULT([yes])
- use_local_glob=no],
+ use_local_glob=no],
[AC_MSG_RESULT([no - using local version])],
[AC_MSG_RESULT([unknown - cross-compiling])])])
AS_IF([test "$use_local_glob" = yes],
Index: othersrc/usr.bin/tnftp/tnftp.h
diff -u othersrc/usr.bin/tnftp/tnftp.h:1.39 othersrc/usr.bin/tnftp/tnftp.h:1.40
--- othersrc/usr.bin/tnftp/tnftp.h:1.39 Sat Jul 4 14:47:35 2020
+++ othersrc/usr.bin/tnftp/tnftp.h Sat Sep 23 04:50:32 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: tnftp.h,v 1.39 2020/07/04 14:47:35 lukem Exp $ */
+/* $NetBSD: tnftp.h,v 1.40 2023/09/23 04:50:32 lukem Exp $ */
#ifndef TNFTP_H
#define TNFTP_H 1
@@ -170,7 +170,7 @@ struct pollfd {
# include <err.h>
#endif
-#if defined(USE_GLOB_H) /* not set by configure; used by other build systems */
+#if defined(USE_GLOB_H)
# include <glob.h>
#else
# include "ftpglob.h"