commit f2858123902bea7492114d69fdaf1731741ad767
parent 90086f053104e7072ad141fe5132cd6256e2227f
Author: Christian Grothoff <christian@grothoff.org>
Date: Fri, 4 Nov 2016 11:21:25 +0100
fix commit 334468c467472230b25b2640ba42639d6052c654 which introduced wrong branch for openssl command-line tool in test
Diffstat:
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/po/POTFILES.in b/po/POTFILES.in
@@ -41,6 +41,7 @@ src/testcurl/https/tls_test_common.c
src/testzzuf/socat.c
src/include/mhd_options.h
src/include/microhttpd.h
+src/microhttpd/connection.h
src/microhttpd/internal.h
src/microhttpd/mhd_compat.h
src/microhttpd/mhd_itc.h
diff --git a/src/microhttpd/test_upgrade_ssl.c b/src/microhttpd/test_upgrade_ssl.c
@@ -189,7 +189,7 @@ main (int argc,
use_tool = TLS_CLI_NO_TOOL;
if (0 == system ("gnutls-cli --version 1> /dev/null"))
use_tool = TLS_CLI_GNUTLS;
- else if (0 != system ("openssl version 1> /dev/null"))
+ else if (0 == system ("openssl version 1> /dev/null"))
use_tool = TLS_CLI_OPENSSL;
else
return 77; /* not possible to test */