]> granicus.if.org Git - apache/commitdiff
Follow up to r1772812: update APLOGNO().
authorYann Ylavic <ylavic@apache.org>
Mon, 20 Feb 2017 14:03:28 +0000 (14:03 +0000)
committerYann Ylavic <ylavic@apache.org>
Mon, 20 Feb 2017 14:03:28 +0000 (14:03 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1783764 13f79535-47bb-0310-9956-ffa450edef68

docs/log-message-tags/next-number
modules/session/mod_session_crypto.c

index db6402d40bdb84b64a959055d3be06e464590480..c2d7b647679465fbe81843ec7c135cc423814529 100644 (file)
@@ -1 +1 @@
-10005
+10007
index f5f47636a8802c606c01d62dbc35423cda48c114..be7e7b18070ba0a71a11fd2c9276195c4033f5ea 100644 (file)
@@ -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;
         }