mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-05 14:13:13 +02:00
c550d95619
argument which specifies how many characters to copy max. strlncpy(dest, src, sizeof(dest), maxcopybytes); vs strlcpy(dest, src, MIN(sizeof(dest),maxcopybytes+1)); We already had a strlncat() vs strlcat()