]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
De-duplicate log message tags.
authorGraham Leggett <minfrin@apache.org>
Tue, 25 Apr 2023 18:53:08 +0000 (18:53 +0000)
committerGraham Leggett <minfrin@apache.org>
Tue, 25 Apr 2023 18:53:08 +0000 (18:53 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1909419 13f79535-47bb-0310-9956-ffa450edef68

docs/log-message-tags/next-number
modules/aaa/mod_auth_bearer.c

index 4553e680b6e824732e58995fe6664cbf6dab3dab..e193fd3ff4e8acd8a491817e302bfd3bf1e12990 100644 (file)
@@ -1 +1 @@
-10448
+10450
index eab488137b59529e9bdec36ef8d50eebfd8cdc99..3c6804dc0f3592691307f6f7baf76e98737eb39b 100644 (file)
@@ -217,7 +217,7 @@ static int get_bearer_auth(request_rec *r, const char **token)
 
     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(request_rec *r)
 
     /* 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;
     }