]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
tls-gnutls.c: Fix type in debug message
authorZdenek Dohnal <zdohnal@redhat.com>
Fri, 12 Jun 2026 07:18:36 +0000 (09:18 +0200)
committerZdenek Dohnal <zdohnal@redhat.com>
Fri, 12 Jun 2026 07:18:36 +0000 (09:18 +0200)
StartTLS - > TLSStart

cups/tls-gnutls.c

index f7ac74952e168507afe47bcc5a9211bd4dbfc89a..eb11c3dad1783309c51aab1b2105cb7db7827e1e 100644 (file)
@@ -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))
     {