You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by mi...@apache.org on 2023/04/25 18:53:09 UTC

svn commit: r1909419 - in /httpd/httpd/trunk: docs/log-message-tags/next-number modules/aaa/mod_auth_bearer.c

Author: minfrin
Date: Tue Apr 25 18:53:08 2023
New Revision: 1909419

URL: http://svn.apache.org/viewvc?rev=1909419&view=rev
Log:
De-duplicate log message tags.

Modified:
    httpd/httpd/trunk/docs/log-message-tags/next-number
    httpd/httpd/trunk/modules/aaa/mod_auth_bearer.c

Modified: httpd/httpd/trunk/docs/log-message-tags/next-number
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/log-message-tags/next-number?rev=1909419&r1=1909418&r2=1909419&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/log-message-tags/next-number (original)
+++ httpd/httpd/trunk/docs/log-message-tags/next-number Tue Apr 25 18:53:08 2023
@@ -1 +1 @@
-10448
+10450

Modified: httpd/httpd/trunk/modules/aaa/mod_auth_bearer.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/aaa/mod_auth_bearer.c?rev=1909419&r1=1909418&r2=1909419&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/aaa/mod_auth_bearer.c (original)
+++ httpd/httpd/trunk/modules/aaa/mod_auth_bearer.c Tue Apr 25 18:53:08 2023
@@ -217,7 +217,7 @@ static int get_bearer_auth(request_rec *
 
     if (strcasecmp(ap_getword(r->pool, &auth_line, ' '), "Bearer")) {
         /* Client tried to authenticate using wrong auth scheme */
-        ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(01614)
+        ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(10448)
                       "client used wrong authentication scheme: %s", r->uri);
         note_bearer_auth_failure(r);
         return HTTP_UNAUTHORIZED;
@@ -253,7 +253,7 @@ static int authenticate_bearer_token(req
 
     /* We need an authentication realm. */
     if (!ap_auth_name(r)) {
-        ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(01615)
+        ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(10449)
                       "need AuthName: %s", r->uri);
         return HTTP_INTERNAL_SERVER_ERROR;
     }