configure.ac: fix whitespace; client.c: make gcc 5.4.0 -Wmaybe-uninitialized happy.

This commit is contained in:
Daniel Pouzzner
2021-12-04 00:57:49 -06:00
parent b4c6140b64
commit 30b68060fb
2 changed files with 2 additions and 2 deletions

View File

@ -1040,7 +1040,7 @@ AC_ARG_ENABLE([krb],
[ ENABLED_KRB=$enableval ],
[ ENABLED_KRB=no ]
)
#IP alternative name Support
AC_ARG_ENABLE([ip-alt-name],

View File

@ -698,7 +698,7 @@ static int ClientBenchmarkThroughput(WOLFSSL_CTX* ctx, char* host, word16 port,
int onlyKeyShare)
{
double start, conn_time = 0, tx_time = 0, rx_time = 0;
SOCKET_T sockfd;
SOCKET_T sockfd = WOLFSSL_SOCKET_INVALID;
WOLFSSL* ssl;
int ret = 0, err = 0;