From 51f8bb46afa042e3b266705068ccce153716994e Mon Sep 17 00:00:00 2001 From: Christopher Faulet Date: Mon, 4 May 2026 17:46:33 +0200 Subject: [PATCH] CLEANUP: http-fetch: Fix indentation of sample_fetch_keywords Misplaced spaces before comma in 'urlp' keyword table entry. --- src/http_fetch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http_fetch.c b/src/http_fetch.c index d9aa3877f..0011e8a7a 100644 --- a/src/http_fetch.c +++ b/src/http_fetch.c @@ -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 */ },