CLEANUP: Use isttest(const struct ist) whenever possible
authorTim Duesterhus <tim@bastelstu.be>
Tue, 2 Mar 2021 17:57:28 +0000 (18:57 +0100)
committerWilly Tarreau <w@1wt.eu>
Wed, 3 Mar 2021 04:07:10 +0000 (05:07 +0100)
commit7b5777d9b4db67815730cbc36d70164892dccfd6
treeda4941887f8d3fa280b8d981eca15d22e7c6e832
parent154374cbc826add921884fa3ec25da517c562e71
CLEANUP: Use isttest(const struct ist) whenever possible

Refactoring performed with the following Coccinelle patch:

    @@
    struct ist i;
    @@

    - i.ptr != NULL
    + isttest(i)
src/backend.c
src/hpack-dec.c
src/log.c
src/mux_h1.c
src/mux_h2.c
src/trace.c