From: Zdenek Dohnal Date: Fri, 12 Jun 2026 07:18:36 +0000 (+0200) Subject: tls-gnutls.c: Fix type in debug message X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4e433ebfff467b526089a139ed5c2f86e64cb3bc;p=thirdparty%2Fcups.git tls-gnutls.c: Fix type in debug message StartTLS - > TLSStart --- diff --git a/cups/tls-gnutls.c b/cups/tls-gnutls.c index f7ac74952e..eb11c3dad1 100644 --- a/cups/tls-gnutls.c +++ b/cups/tls-gnutls.c @@ -1966,7 +1966,7 @@ _httpTLSStart(http_t *http) // I - Connection to server // Do the TLS handshake... while ((status = gnutls_handshake(http->tls)) != GNUTLS_E_SUCCESS) { - DEBUG_printf("5_httpStartTLS: gnutls_handshake returned %d (%s)", status, gnutls_strerror(status)); + DEBUG_printf("5_httpTLSStart: gnutls_handshake returned %d (%s)", status, gnutls_strerror(status)); if (gnutls_error_is_fatal(status)) {