]> granicus.if.org Git - apache/commitdiff
tab vs space
authorChristophe Jaillet <jailletc36@apache.org>
Wed, 22 Oct 2014 05:22:09 +0000 (05:22 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Wed, 22 Oct 2014 05:22:09 +0000 (05:22 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1633528 13f79535-47bb-0310-9956-ffa450edef68

server/util_expr_eval.c

index 8ac890e9ceba529c10f3fd8cbe1864a868f0ea9f..f7c439c627575b614b7243fcce49d1a44e504119 100644 (file)
@@ -1060,14 +1060,14 @@ static const char *sha1_func(ap_expr_eval_ctx_t *ctx, const void *data,
 static const char *md5_func(ap_expr_eval_ctx_t *ctx, const void *data,
                                const char *arg)
 {
-       return ap_md5(ctx->p, (const unsigned char *)arg);
+    return ap_md5(ctx->p, (const unsigned char *)arg);
 }
 
 #if APR_VERSION_AT_LEAST(1,6,0)
 static const char *ldap_func(ap_expr_eval_ctx_t *ctx, const void *data,
                                const char *arg)
 {
-        return apr_pescape_ldap(ctx->p, arg, APR_ESCAPE_STRING, APR_ESCAPE_LDAP_ALL);
+    return apr_pescape_ldap(ctx->p, arg, APR_ESCAPE_STRING, APR_ESCAPE_LDAP_ALL);
 }
 #endif