CVSROOT: /cvs Module name: src Changes by: [email protected] 2017/08/28 12:52:26
Modified files:
usr.bin/cvs : rcs.c
Log message:
Use xasprintf() instead of calloc() + strlcpy() + memcpy() to
generate the log line. Fixes a clang warning about using the wrong
size argument in strlcpy(). The existing code was safe but not
good strlcpy() practice. OK otto@
