]> granicus.if.org Git - apache/commitdiff
Thou shalt not let tabs creep in.
authorNick Kew <niq@apache.org>
Sat, 29 Mar 2008 19:56:55 +0000 (19:56 +0000)
committerNick Kew <niq@apache.org>
Sat, 29 Mar 2008 19:56:55 +0000 (19:56 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@642596 13f79535-47bb-0310-9956-ffa450edef68

include/ap_expr.h
server/util_expr.c

index 5ff987b6f7048651c04913dacf273e4720d03c18..cccf42f092a2efafedccb83f7142211658c22588 100644 (file)
@@ -83,7 +83,7 @@ AP_DECLARE(parse_node_t*) ap_expr_parse(apr_pool_t *pool, const char *expr,
  * @return the value the expression parsed to
  */
 AP_DECLARE(int) ap_expr_eval(request_rec *r, parse_node_t *root,
-                            int *was_error, backref_t **reptr,
+                             int *was_error, backref_t **reptr,
                              string_func_t string_func, opt_func_t eval_func);
 /**
  * Evaluate an expression
@@ -97,5 +97,5 @@ AP_DECLARE(int) ap_expr_eval(request_rec *r, parse_node_t *root,
  */
 AP_DECLARE(int) ap_expr_evalstring(request_rec *r, const char *expr,
                                    int *was_error, backref_t **reptr,
-                                  string_func_t string_func,
+                                   string_func_t string_func,
                                    opt_func_t eval_func);
index d1ab34236da3646a20da1933d5a927040d9e7320..15f20c0e14088d6b0e286a5603bab8145311da59 100644 (file)
@@ -866,9 +866,9 @@ AP_DECLARE(int) ap_expr_evalstring(request_rec *r, const char *expr,
 {
     parse_node_t *root = ap_expr_parse(r->pool, expr, was_error);
     if (*was_error || !root) {
-       ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
+        ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
                       "Error parsing expression in %s", r->filename);   
-       return 0;
+        return 0;
     }
     return ap_expr_eval(r, root, was_error, reptr, string_func, eval_func);
 }