diff options
author | Yann Ylavic <ylavic@apache.org> | 2015-01-31 18:53:42 +0100 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2015-01-31 18:53:42 +0100 |
commit | 89a027a48a67e64f388f5d7cf94c0c9c6b6c2614 (patch) | |
tree | b46d446f739536dde07d40ebd1451b769c3968b6 /modules/mappers | |
parent | correct copy/paste error, use cmd->cmd->name (diff) | |
download | apache2-89a027a48a67e64f388f5d7cf94c0c9c6b6c2614.tar.xz apache2-89a027a48a67e64f388f5d7cf94c0c9c6b6c2614.zip |
mod_alias: follow up to r1653941.
Fill empty APLOGNO().
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1656225 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/mappers')
-rw-r--r-- | modules/mappers/mod_alias.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/mappers/mod_alias.c b/modules/mappers/mod_alias.c index ad6e55846e..3eb899bb92 100644 --- a/modules/mappers/mod_alias.c +++ b/modules/mappers/mod_alias.c @@ -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; } |