commit | 49b0482ed4a24483de8627b246ae9068bbf405e8 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Mon Nov 08 11:44:47 2021 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Mon Nov 08 12:08:26 2021 +0100 |
tree | 722ec177288f6b93e717b3181997a01b14e66988 | |
parent | 8f1d178cd1732689f08df7f97b8a6fecb13c748d [diff] |
CLEANUP: chunk: remove misleading chunk_strncat() function This function claims to perform an strncat()-like operation but it does not, it always copies the indicated number of bytes, regardless of the presence of a NUL character (what is currently done by chunk_memcat()). Let's remove it and explicitly replace it with chunk_memcat().