From: Christopher Faulet Date: Mon, 27 Jul 2026 10:02:56 +0000 (+0200) Subject: CLEANUP: http-conv: Remove useless enc_type init to ENC_QUERY X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d62964cc8a7a51decfd14aad8c2a57eb8fa7fb5b;p=thirdparty%2Fhaproxy.git CLEANUP: http-conv: Remove useless enc_type init to ENC_QUERY this commit dropped a dead "enc_type = ENC_QUERY;" store that was immediately overwritten. --- diff --git a/src/http_conv.c b/src/http_conv.c index 9e7012692..98e7d4f78 100644 --- a/src/http_conv.c +++ b/src/http_conv.c @@ -347,7 +347,6 @@ static int sample_conv_url_enc(const struct arg *args, struct sample *smp, void if (!trash) return 0; - enc_type = ENC_QUERY; enc_type = args->data.sint; if (enc_type == ENC_QUERY)