From: Stefan Eissing Date: Mon, 14 Sep 2015 13:57:09 +0000 (+0000) Subject: reverting unwanted loss of missing case X-Git-Tag: 2.5.0-alpha~2846 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a58cc8eef08f0681f7245a9b00f9608ef37e0cc3;p=thirdparty%2Fapache%2Fhttpd.git reverting unwanted loss of missing case git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1702954 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/util_expr_eval.c b/server/util_expr_eval.c index 2d10ab5c68e..9b569bd132f 100644 --- a/server/util_expr_eval.c +++ b/server/util_expr_eval.c @@ -98,7 +98,7 @@ static const char *ap_expr_eval_word(ap_expr_eval_ctx_t *ctx, case op_String: result = node->node_arg1; break; - + case op_Var: result = ap_expr_eval_var(ctx, (ap_expr_var_func_t *)node->node_arg1, node->node_arg2); break;