]> git.ipfire.org Git - thirdparty/haproxy.git/commit
CLEANUP: Use ist2(const void*, size_t) whenever possible
authorTim Duesterhus <tim@bastelstu.be>
Sun, 28 Feb 2021 15:11:36 +0000 (16:11 +0100)
committerChristopher Faulet <cfaulet@haproxy.com>
Mon, 1 Mar 2021 14:44:20 +0000 (15:44 +0100)
commit92c696e663ab4bbcffd5dc0afedf1d0afd1c7279
tree3e299f53c59b5ccb5da17688f063395acb1978e8
parent9e647e5af77faa6a95dd511d78ed8763781e764a
CLEANUP: Use ist2(const void*, size_t) whenever possible

Refactoring performed with the following Coccinelle patch:

    @@
    struct ist i;
    expression p, l;
    @@

    - i.ptr = p;
    - i.len = l;
    + i = ist2(p, l);
src/51d.c
src/dns.c
src/http_fetch.c
src/log.c
src/mux_h1.c
src/mux_h2.c
src/trace.c
src/wurfl.c