mirror of
https://github.com/apache/httpd.git
synced 2025-08-13 14:40:20 +00:00
Added some more log numbers to log statements that
had none. Those were not detected by the coccinelle script. Only a few hard cases are remaining now. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1725548 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -876,7 +876,8 @@ AP_DECLARE(int) ap_expr_exec_ctx(ap_expr_eval_ctx_t *ctx)
|
||||
*ctx->result_string = ap_expr_eval_word(ctx, ctx->info->root_node);
|
||||
if (*ctx->err != NULL) {
|
||||
ap_log_rerror(LOG_MARK(ctx->info), APLOG_ERR, 0, ctx->r,
|
||||
"Evaluation of expression from %s:%d failed: %s",
|
||||
APLOGNO(03298)
|
||||
"Evaluation of string expression from %s:%d failed: %s",
|
||||
ctx->info->filename, ctx->info->line_number, *ctx->err);
|
||||
return -1;
|
||||
} else {
|
||||
@ -891,6 +892,7 @@ AP_DECLARE(int) ap_expr_exec_ctx(ap_expr_eval_ctx_t *ctx)
|
||||
rc = ap_expr_eval(ctx, ctx->info->root_node);
|
||||
if (*ctx->err != NULL) {
|
||||
ap_log_rerror(LOG_MARK(ctx->info), APLOG_ERR, 0, ctx->r,
|
||||
APLOGNO(03299)
|
||||
"Evaluation of expression from %s:%d failed: %s",
|
||||
ctx->info->filename, ctx->info->line_number, *ctx->err);
|
||||
return -1;
|
||||
|
Reference in New Issue
Block a user