Author: brane
Date: Sat Jul  5 06:59:51 2025
New Revision: 1926969

URL: http://svn.apache.org/viewvc?rev=1926969&view=rev
Log:
Follow up to r1926725: Remove an unused variable.

* auth/auth.c
  (store_header_in_dict): The local variable 'c' is no longer used since
   we call serf__tolower_inplace() instead of open-coding.

Modified:
    serf/branches/user-defined-authn/auth/auth.c

Modified: serf/branches/user-defined-authn/auth/auth.c
URL: 
http://svn.apache.org/viewvc/serf/branches/user-defined-authn/auth/auth.c?rev=1926969&r1=1926968&r2=1926969&view=diff
==============================================================================
--- serf/branches/user-defined-authn/auth/auth.c (original)
+++ serf/branches/user-defined-authn/auth/auth.c Sat Jul  5 06:59:51 2025
@@ -249,7 +249,7 @@ static int store_header_in_dict(void *ba
 {
     auth_baton_t *ab = baton;
     const char *auth_attr;
-    char *auth_name, *c;
+    char *auth_name;
 
     /* We're only interested in xxxx-Authenticate headers. */
     if (strcasecmp(key, ab->header) != 0)


Reply via email to