From: Zdenek Dohnal Date: Mon, 21 Oct 2024 11:30:15 +0000 (+0200) Subject: tls-gnutls.c: Fix tls_credentials -> credentials X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7b3fbd13dcc03ab27afb9d2c16f2498e0fa5a033;p=thirdparty%2Fcups.git tls-gnutls.c: Fix tls_credentials -> credentials --- diff --git a/cups/tls-gnutls.c b/cups/tls-gnutls.c index 74c3859ac4..db5801ca84 100644 --- a/cups/tls-gnutls.c +++ b/cups/tls-gnutls.c @@ -1592,7 +1592,7 @@ _httpTLSStart(http_t *http) // I - Connection to server } status = gnutls_server_name_set(http->tls, GNUTLS_NAME_DNS, hostname, strlen(hostname)); - if (!status && (credentials = _httpUseCredentials(cg->tls_credentials)) == NULL) + if (!status && (credentials = _httpUseCredentials(cg->credentials)) == NULL) { if ((credentials = _httpCreateCredentials(NULL, NULL)) == NULL) status = -1;