]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
mod_alias: follow up to r1653941.
authorYann Ylavic <ylavic@apache.org>
Sat, 31 Jan 2015 17:53:42 +0000 (17:53 +0000)
committerYann Ylavic <ylavic@apache.org>
Sat, 31 Jan 2015 17:53:42 +0000 (17:53 +0000)
Fill empty APLOGNO().

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1656225 13f79535-47bb-0310-9956-ffa450edef68

docs/log-message-tags/next-number
modules/mappers/mod_alias.c

index b3a37ac4b74edb7058a56b0067858144d5d6cc26..d698320b8833c675811600ea914338f120e6fcc5 100644 (file)
@@ -1 +1 @@
-2825
+2827
index ad6e55846e682917d76c03b8c2597f7375e58dc7..3eb899bb921f469f8c67dd015a2b56bcfb53aa8f 100644 (file)
@@ -455,7 +455,7 @@ static char *try_alias(request_rec *r)
         char *found = apr_pstrdup(r->pool,
                 ap_expr_str_exec(r, dirconf->alias, &err));
         if (err) {
-            ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO()
+            ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(02825)
                           "Can't evaluate alias expression: %s", err);
             return PREGSUB_ERROR;
         }
@@ -492,8 +492,8 @@ static char *try_redirect(request_rec *r, int *status)
             found = apr_pstrdup(r->pool,
                     ap_expr_str_exec(r, dirconf->redirect, &err));
             if (err) {
-                ap_log_rerror(
-                        APLOG_MARK, APLOG_ERR, 0, r, APLOGNO() "Can't evaluate redirect expression: %s", err);
+                ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(02826)
+                              "Can't evaluate redirect expression: %s", err);
                 return PREGSUB_ERROR;
             }