summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraham Leggett <minfrin@apache.org>2023-04-25 18:53:08 +0000
committerGraham Leggett <minfrin@apache.org>2023-04-25 18:53:08 +0000
commit0544997f853c322a318b4b4deb188bf72f17cf90 (patch)
treeef6522db25ea22537939b5e11818fc13aeb29601
parente22bbfa1adc46d472561caf3d5a674e8b78f61f0 (diff)
downloadhttpd-0544997f853c322a318b4b4deb188bf72f17cf90.tar.gz
De-duplicate log message tags.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1909419 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--docs/log-message-tags/next-number2
-rw-r--r--modules/aaa/mod_auth_bearer.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/log-message-tags/next-number b/docs/log-message-tags/next-number
index 4553e680b6..e193fd3ff4 100644
--- a/docs/log-message-tags/next-number
+++ b/docs/log-message-tags/next-number
@@ -1 +1 @@
-10448
+10450
diff --git a/modules/aaa/mod_auth_bearer.c b/modules/aaa/mod_auth_bearer.c
index eab488137b..3c6804dc0f 100644
--- a/modules/aaa/mod_auth_bearer.c
+++ b/modules/aaa/mod_auth_bearer.c
@@ -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;
}