From: Thierry FOURNIER Date: Wed, 20 May 2015 13:22:37 +0000 (+0200) Subject: CLEANUP: http: bad indentation X-Git-Tag: v1.6-dev2~103 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0948d41a123fe432b39d212dcd666bf17d3c8429;p=thirdparty%2Fhaproxy.git CLEANUP: http: bad indentation Some function argument uses space in place of tabulation for the indentation. --- diff --git a/src/proto_http.c b/src/proto_http.c index 0f1ecb1cc9..d3c7fa7a39 100644 --- a/src/proto_http.c +++ b/src/proto_http.c @@ -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;