From be4d6bc20471e9b73df513a5ddc760ca167fcaab Mon Sep 17 00:00:00 2001 From: Jacob Barthelmeh Date: Mon, 4 Feb 2019 10:46:16 -0700 Subject: [PATCH] fix typo with getting cipher suite --- src/ssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ssl.c b/src/ssl.c index f0e26eb61..6aa0a970b 100644 --- a/src/ssl.c +++ b/src/ssl.c @@ -16132,7 +16132,7 @@ const char* wolfSSL_SESSION_CIPHER_get_name(WOLFSSL_SESSION* session) #if !defined(WOLFSSL_CIPHER_INTERNALNAME) && !defined(NO_ERROR_STRINGS) return GetCipherNameIana(session->cipherSuite0, session->cipherSuite); #else - return GetCipherNameInternal(ession->cipherSuite0, session->cipherSuite); + return GetCipherNameInternal(session->cipherSuite0, session->cipherSuite); #endif #else return NULL;