Module Name:    othersrc
Committed By:   lukem
Date:           Mon Feb  9 08:00:23 UTC 2015

Modified Files:
        othersrc/usr.bin/tnftp: configure.ac

Log Message:
Fix --disable-ssl

Correct the variable manipulated by --enable-ssl so that --disable-ssl
functions correctly.
Patch from OBATA Akio <[email protected]>.


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 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/configure.ac
diff -u othersrc/usr.bin/tnftp/configure.ac:1.29 othersrc/usr.bin/tnftp/configure.ac:1.30
--- othersrc/usr.bin/tnftp/configure.ac:1.29	Mon Nov  3 21:48:49 2014
+++ othersrc/usr.bin/tnftp/configure.ac	Mon Feb  9 08:00:23 2015
@@ -1,4 +1,4 @@
-#       $NetBSD: configure.ac,v 1.29 2014/11/03 21:48:49 lukem Exp $
+#       $NetBSD: configure.ac,v 1.30 2015/02/09 08:00:23 lukem Exp $
 #
 # Process this file with autoconf to produce a configure script.
 
@@ -9,7 +9,7 @@ AC_COPYRIGHT([
 Copyright (c) 1999-2014 The NetBSD Foundation, Inc.
 All rights reserved.
 ])
-AC_REVISION([$Revision: 1.29 $])
+AC_REVISION([$Revision: 1.30 $])
 
 AS_SHELL_SANITIZE()
 
@@ -41,8 +41,8 @@ AC_ARG_ENABLE([ssl],
               [AS_HELP_STRING([--enable-ssl],
                               [enable SSL support (requires --with-openssl)
                                [default=auto]])],
-              [opt_ssl=$enableval],
-              [opt_ssl=auto])
+              [with_ssl=$enableval],
+              [with_ssl=auto])
 AC_ARG_WITH([socks],
             [AS_HELP_STRING([--with-socks],
                             [enable support for (Dante) SOCKS5 proxy

Reply via email to