]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Add log numbers to util_etag.c.
authorGraham Leggett <minfrin@apache.org>
Fri, 3 Jul 2020 11:19:10 +0000 (11:19 +0000)
committerGraham Leggett <minfrin@apache.org>
Fri, 3 Jul 2020 11:19:10 +0000 (11:19 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1879470 13f79535-47bb-0310-9956-ffa450edef68

docs/log-message-tags/next-number
server/util_etag.c

index fde32dc6d61a8ac3742bc85798807781911c1441..6b0da6550921fe644f2767f68439d6b1e6591d91 100644 (file)
@@ -1 +1 @@
-10251
+10256
index e6ed53284fa5e1242b970dcb1323c86ee968c108..89ab648b57496af3200592ca6458daaeb0b175f8 100644 (file)
@@ -164,7 +164,7 @@ AP_DECLARE(char *) ap_make_etag_ex(request_rec *r, etag_rec *er)
         else if (er->pathname) {
             if ((status = apr_file_open(&fd, er->pathname, APR_READ | APR_BINARY,
                     0, r->pool)) != APR_SUCCESS) {
-                ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r, APLOGNO()
+                ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r, APLOGNO(10251)
                               "Make etag: could not open %s", er->pathname);
                 return "";
             }
@@ -177,7 +177,7 @@ AP_DECLARE(char *) ap_make_etag_ex(request_rec *r, etag_rec *er)
                 SHA1_DIGEST_BASE64_LEN + vlv_len + 4);
 
         if ((status = apr_file_seek(fd, APR_CUR, &offset)) != APR_SUCCESS) {
-            ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r, APLOGNO()
+            ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r, APLOGNO(10252)
                           "Make etag: could not seek");
             if (er->pathname) {
                 apr_file_close(fd);
@@ -186,7 +186,7 @@ AP_DECLARE(char *) ap_make_etag_ex(request_rec *r, etag_rec *er)
         }
 
         if ((status = apr_file_seek(fd, APR_SET, &zero)) != APR_SUCCESS) {
-            ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r, APLOGNO()
+            ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r, APLOGNO(10253)
                           "Make etag: could not seek");
             if (er->pathname) {
                 apr_file_close(fd);
@@ -201,7 +201,7 @@ AP_DECLARE(char *) ap_make_etag_ex(request_rec *r, etag_rec *er)
             nbytes = sizeof(buf);
         }
         if (status != APR_EOF) {
-            ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r, APLOGNO()
+            ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r, APLOGNO(10254)
                           "Make etag: could not read");
             if (er->pathname) {
                 apr_file_close(fd);
@@ -210,7 +210,7 @@ AP_DECLARE(char *) ap_make_etag_ex(request_rec *r, etag_rec *er)
         }
 
         if ((status = apr_file_seek(fd, APR_SET, &offset)) != APR_SUCCESS) {
-            ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r, APLOGNO()
+            ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r, APLOGNO(10255)
                           "Make etag: could not seek");
             if (er->pathname) {
                 apr_file_close(fd);