diff options
author | Andreas Metzler <ametzler@bebt.de> | 2018-07-07 14:20:01 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2018-07-07 19:30:49 +0200 |
commit | 39ffd2d902fcbd15535e9c3efed168950dbab6cf (patch) | |
tree | c456785c82a1b66cfde40e4d96574dc8d7300ac1 /m4/hooks.m4 | |
parent | c27376064181a17811d23b5647d98d5656d8813e (diff) | |
download | gnutls-39ffd2d902fcbd15535e9c3efed168950dbab6cf.tar.gz |
configure: Fix progress message for --enable-tls13-support
Signed-off-by: Andreas Metzler <ametzler@bebt.de>
Diffstat (limited to 'm4/hooks.m4')
-rw-r--r-- | m4/hooks.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/hooks.m4 b/m4/hooks.m4 index e997e1d30c..fcd6f9cd80 100644 --- a/m4/hooks.m4 +++ b/m4/hooks.m4 @@ -179,11 +179,11 @@ LIBTASN1_MINIMUM=4.9 [enable the TLS1.3 draft protocol by default]), ac_enable_tls13=$enableval) if test x$ac_enable_tls13 != xno; then - AC_MSG_RESULT(no) + AC_MSG_RESULT(yes) AC_DEFINE([ENABLE_TLS13], 1, [enable TLS1.3 support]) else ac_full=0 - AC_MSG_RESULT(yes) + AC_MSG_RESULT(no) fi AM_CONDITIONAL(ENABLE_TLS13, test "$ac_enable_tls13" != "no") |