]> git.ipfire.org Git - thirdparty/haproxy.git/commit
BUG/MINOR: http: fix build warning introduced with url32/url32_src
authorWilly Tarreau <w@1wt.eu>
Mon, 18 Nov 2013 17:33:22 +0000 (18:33 +0100)
committerWilly Tarreau <w@1wt.eu>
Mon, 18 Nov 2013 17:33:32 +0000 (18:33 +0100)
commite155ec245a81e3e4b26325ebec6ac4c0b3f46874
treec268955e726eec9408ef472c62a7b27a6c3e1557
parent6d4890cfeaeac2983406ad544fde64400a1361a0
BUG/MINOR: http: fix build warning introduced with url32/url32_src

commit 39c63c5 "url32+src - like base32+src but whole url including parameters"
was missing the last argument "const char *kw", resulting in the build warning
below :

src/proto_http.c:10351:2: warning: initialization from incompatible pointer type [enabled by default]
src/proto_http.c:10351:2: warning: (near initialization for 'sample_fetch_keywords.kw[50].process') [enabled by default]
src/proto_http.c:10352:2: warning: initialization from incompatible pointer type [enabled by default]
src/proto_http.c:10352:2: warning: (near initialization for 'sample_fetch_keywords.kw[51].process') [enabled by default]

It's harmless since it's not needed there anyway.
src/proto_http.c