From: Jouni Malinen Date: Sat, 1 Feb 2025 16:49:15 +0000 (+0200) Subject: GnuTLS: Use standard comment for falling through switch case X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=26d64d737b569ae5e6d4fb7d5920b59531b7118d;p=thirdparty%2Fhostap.git GnuTLS: Use standard comment for falling through switch case This gets rid of an implicit-fallthrough warning from the compiler. Signed-off-by: Jouni Malinen --- diff --git a/src/crypto/tls_gnutls.c b/src/crypto/tls_gnutls.c index 378bebbd7..7d73b4f06 100644 --- a/src/crypto/tls_gnutls.c +++ b/src/crypto/tls_gnutls.c @@ -1516,7 +1516,7 @@ struct wpabuf * tls_connection_handshake(void *tls_ctx, conn->global->event_cb(conn->global->cb_ctx, TLS_ALERT, &ev); } - /* continue */ + /* fallthrough */ default: wpa_printf(MSG_DEBUG, "%s - gnutls_handshake failed " "-> %s", __func__, gnutls_strerror(ret));