From: Yann Ylavic Date: Mon, 20 Feb 2017 14:03:28 +0000 (+0000) Subject: Follow up to r1772812: update APLOGNO(). X-Git-Tag: 2.5.0-alpha~638 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4c670d171590bd0dd001f3cfc0f83e26970f3c7a;p=apache Follow up to r1772812: update APLOGNO(). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1783764 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/log-message-tags/next-number b/docs/log-message-tags/next-number index db6402d40b..c2d7b64767 100644 --- a/docs/log-message-tags/next-number +++ b/docs/log-message-tags/next-number @@ -1 +1 @@ -10005 +10007 diff --git a/modules/session/mod_session_crypto.c b/modules/session/mod_session_crypto.c index f5f47636a8..be7e7b1807 100644 --- a/modules/session/mod_session_crypto.c +++ b/modules/session/mod_session_crypto.c @@ -381,7 +381,7 @@ static apr_status_t decrypt_string(request_rec * r, const apr_crypto_t *f, /* sanity check - decoded too short? */ if (decodedlen < (AP_SIPHASH_DSIZE + sizeof(apr_uuid_t))) { - ap_log_rerror(APLOG_MARK, APLOG_DEBUG, APR_SUCCESS, r, APLOGNO() + ap_log_rerror(APLOG_MARK, APLOG_DEBUG, APR_SUCCESS, r, APLOGNO(10005) "too short to decrypt, aborting"); return APR_ECRYPT; } @@ -403,7 +403,7 @@ static apr_status_t decrypt_string(request_rec * r, const apr_crypto_t *f, */ compute_auth(slider, len, passphrase, passlen, auth); if (!ap_crypto_equals(auth, decoded, AP_SIPHASH_DSIZE)) { - ap_log_rerror(APLOG_MARK, APLOG_DEBUG, res, r, APLOGNO() + ap_log_rerror(APLOG_MARK, APLOG_DEBUG, res, r, APLOGNO(10006) "auth does not match, skipping"); continue; }