Revert "DEV: coccinelle: Add rule to use chunk_istcat() instead of chunk_strncat()"

This reverts commit b9656e4837. It's
not needed anymore since 49b0482ed ("CLEANUP: chunk: remove misleading
chunk_strncat() function").
This commit is contained in:
Willy Tarreau 2021-11-08 13:42:03 +01:00
parent 1f38bdb3f6
commit 64755bf856

View File

@ -60,14 +60,6 @@ struct buffer *b;
- chunk_memcat(b, \(i.ptr\|istptr(i)\) , \(i.len\|istlen(i)\));
+ chunk_istcat(b, i);
@@
struct ist i;
struct buffer *b;
@@
- chunk_strncat(b, \(i.ptr\|istptr(i)\) , \(i.len\|istlen(i)\));
+ chunk_istcat(b, i);
@@
struct ist i;
@@