]> git.kaiwu.me - haproxy.git/commitdiff
CLEANUP: http-fetch: Fix indentation of sample_fetch_keywords
authorChristopher Faulet <cfaulet@haproxy.com>
Mon, 4 May 2026 15:46:33 +0000 (17:46 +0200)
committerChristopher Faulet <cfaulet@haproxy.com>
Tue, 5 May 2026 16:36:04 +0000 (18:36 +0200)
Misplaced spaces before comma in 'urlp' keyword table entry.

src/http_fetch.c

index d9aa3877f387fedccbd95b87124d34897f751ddb..0011e8a7a561f0fa5c657c35eaab76c500ce9631 100644 (file)
@@ -2420,7 +2420,7 @@ static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, {
        { "url_ip",             smp_fetch_url_ip,             0,                NULL,    SMP_T_IPV4, SMP_USE_HRQHV },
        { "url_port",           smp_fetch_url_port,           0,                NULL,    SMP_T_SINT, SMP_USE_HRQHV },
        { "url_param",          smp_fetch_url_param,          ARG3(0,STR,STR,STR),  NULL,    SMP_T_STR,  SMP_USE_HRQHV },
-       { "urlp"     ,          smp_fetch_url_param,          ARG3(0,STR,STR,STR),  NULL,    SMP_T_STR,  SMP_USE_HRQHV },
+       { "urlp",               smp_fetch_url_param,          ARG3(0,STR,STR,STR),  NULL,    SMP_T_STR,  SMP_USE_HRQHV },
        { "urlp_val",           smp_fetch_url_param_val,      ARG3(0,STR,STR,STR),  NULL,    SMP_T_SINT, SMP_USE_HRQHV },
 
        { /* END */ },