Skip to content

Commit 31eb54f

Browse files
committed
Fix from review
1 parent 191b827 commit 31eb54f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/api/test_tls.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -752,7 +752,7 @@ int test_tls12_etm_failed_resumption(void)
752752
!defined(WOLFSSL_AEAD_ONLY) && !defined(NO_RSA) && !defined(NO_AES) && \
753753
defined(HAVE_AES_CBC) && !defined(NO_SHA256) && \
754754
defined(HAVE_SESSION_TICKET) && defined(HAVE_ECC)
755-
/* TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 a CBC suite, where ETM applies. */
755+
/* TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 - a CBC suite, where ETM applies. */
756756
const char* cbcSuite = "ECDHE-RSA-AES128-SHA256";
757757
WOLFSSL_CTX *ctx_c = NULL, *ctx_s = NULL;
758758
WOLFSSL *ssl_c = NULL, *ssl_s = NULL;
@@ -790,7 +790,7 @@ int test_tls12_etm_failed_resumption(void)
790790
/* The internal session cache is process-global, so the saved session is
791791
* still findable via the cache. Disable lookups on this server SSL
792792
* directly so that HandleTlsResumption hits its "session lookup failed"
793-
* path exactly the scenario the bug fix targets. */
793+
* path - exactly the scenario the bug fix targets. */
794794
if (ssl_s != NULL)
795795
ssl_s->options.sessionCacheOff = 1;
796796
ExpectIntEQ(wolfSSL_NoTicketTLSv12(ssl_c), WOLFSSL_SUCCESS);

0 commit comments

Comments
 (0)