]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
autotools: capitalize 'Rustls' in the log output
authorViktor Szakats <commit@vsz.me>
Mon, 22 Sep 2025 00:03:08 +0000 (02:03 +0200)
committerViktor Szakats <commit@vsz.me>
Mon, 22 Sep 2025 08:11:31 +0000 (10:11 +0200)
To match the rest of the codebase.

Follow-up to 548d8a842123c854ba92aac90a24c6191e2a8bd4
Cherry-picked from #18660
Closes #18671

configure.ac
m4/curl-rustls.m4

index 1aa0c2759651708050290961bb85fef9c64102b3..922978bfc106504b882c0548743998df5deeb516 100644 (file)
@@ -272,8 +272,8 @@ AC_ARG_WITH(rustls,dnl
 AS_HELP_STRING([--with-rustls=PATH],[where to look for Rustls, PATH points to the installation root]),[
   OPT_RUSTLS=$withval
   if test X"$withval" != Xno; then
-    TLSCHOICE="${TLSCHOICE:+$TLSCHOICE, }rustls"
-    experimental="$experimental rustls"
+    TLSCHOICE="${TLSCHOICE:+$TLSCHOICE, }Rustls"
+    experimental="$experimental Rustls"
   fi
 ])
 
index 13022f3963b1861b376f0fb433588bb3139ff31e..8abcc6544bc50e415e2ec70360b25d01dcafdee0 100644 (file)
@@ -132,7 +132,7 @@ if test "x$OPT_RUSTLS" != xno; then
       dnl don't need any.
       LIBS="$SSL_LIBS $LIBS"
       link_pkgconfig=1
-      ssl_msg="rustls"
+      ssl_msg="Rustls"
       AC_DEFINE(USE_RUSTLS, 1, [if Rustls is enabled])
       USE_RUSTLS="yes"
       RUSTLS_ENABLED=1
@@ -176,7 +176,7 @@ if test "x$OPT_RUSTLS" != xno; then
         AC_DEFINE(USE_RUSTLS, 1, [if Rustls is enabled])
         RUSTLS_ENABLED=1
         USE_RUSTLS="yes"
-        ssl_msg="rustls"
+        ssl_msg="Rustls"
         test rustls != "$DEFAULT_SSL_BACKEND" || VALID_DEFAULT_SSL_BACKEND=yes
         ],
         AC_MSG_ERROR([--with-rustls was specified but could not find compatible Rustls.]),