commit | 92c696e663ab4bbcffd5dc0afedf1d0afd1c7279 | [log] [tgz] |
---|---|---|
author | Tim Duesterhus <tim@bastelstu.be> | Sun Feb 28 16:11:36 2021 +0100 |
committer | Christopher Faulet <cfaulet@haproxy.com> | Mon Mar 01 15:44:20 2021 +0100 |
tree | 3e299f53c59b5ccb5da17688f063395acb1978e8 | |
parent | 9e647e5af77faa6a95dd511d78ed8763781e764a [diff] |
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);