]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Correct rename of variable that went one bikeshed too far
authorBob Beck <beck@openssl.org>
Sun, 22 Feb 2026 18:03:33 +0000 (11:03 -0700)
committerNeil Horman <nhorman@openssl.org>
Tue, 24 Feb 2026 14:03:39 +0000 (09:03 -0500)
Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
MergeDate: Tue Feb 24 14:05:15 2026
(Merged from https://github.com/openssl/openssl/pull/29612)

ssl/ssl_lib.c

index 8c42b5e610c3fbc43bdd46229a0e8bd1caa81547..76615f4809792d0099940778872817307bff1839 100644 (file)
@@ -1177,7 +1177,7 @@ int SSL_add1_ipaddr(SSL *s, const char *ipaddr)
     if (sc == NULL)
         return 0;
 
-    return X509_VERIFY_PARAM_add1_ip_asc(sc->param, ip_asc);
+    return X509_VERIFY_PARAM_add1_ip_asc(sc->param, ipaddr);
 }
 
 #if !defined(OPENSSL_NO_DEPRECATED_4_0)