]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CLEANUP: http: bad indentation
authorThierry FOURNIER <tfournier@haproxy.com>
Wed, 20 May 2015 13:22:37 +0000 (15:22 +0200)
committerWilly Tarreau <w@1wt.eu>
Wed, 20 May 2015 13:56:23 +0000 (15:56 +0200)
Some function argument uses space in place of tabulation
for the indentation.

src/proto_http.c

index 0f1ecb1cc97eed64d65679712cd0209bcfcf9c13..d3c7fa7a397150033459f6c6dd34196ffff016b7 100644 (file)
@@ -11589,9 +11589,9 @@ smp_fetch_param(char delim, const char *name, int name_len, const struct arg *ar
        qs_end = smp->ctx.a[1];
 
        if (!find_next_url_param(query_string, qs_end,
-                                 name, name_len,
-                                 &smp->data.str.str, &smp->data.str.len,
-                                 delim))
+                                name, name_len,
+                                &smp->data.str.str, &smp->data.str.len,
+                                delim))
                return 0;
 
        query_string = smp->data.str.str + smp->data.str.len + 1;