From: Christopher Faulet Date: Tue, 5 May 2020 09:49:57 +0000 (+0200) Subject: BUG/MINOR: da: Fix HTX message prefetch X-Git-Tag: v2.2-dev7~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d1185cc496cb624f6eddfa525244eace29b61d00;p=thirdparty%2Fhaproxy.git BUG/MINOR: da: Fix HTX message prefetch An additional argument has been added to smp_prefetch_htx() function in the commit 778f5ed47 ("MEDIUM: checks/http-fetch: Support htx prefetch from a check for HTTP samples"). But forgot to update call in da module. No need to backport. --- diff --git a/src/da.c b/src/da.c index 0984c30494..0e4d5a7636 100644 --- a/src/da.c +++ b/src/da.c @@ -301,7 +301,7 @@ static int da_haproxy_fetch(const struct arg *args, struct sample *smp, const ch } chn = (smp->strm ? &smp->strm->req : NULL); - htx = smp_prefetch_htx(smp, chn, 1); + htx = smp_prefetch_htx(smp, chn, NULL, 1); if (!htx) return 0;