The following commit has been merged in the master branch:
commit a52346ae503dc6aedb5115ef6b089ae26f46a58c
Author: Benjamin Kaduk <[email protected]>
Date:   Thu Feb 6 15:52:49 2014 -0500

    Satisfy clang's aggressive strlcpy warnings
    
    Passing something related to the length of the source as the
    length argument to strlcpy triggers a warning, which is converted
    to an error with --enable-checking (on FreeBSD 10.0).  The current
    code is safe, since it is using the same expression that was used
    to allocate the destination buffer, but switch to using a separate
    variable to hold the length and use that variable for both allocation
    and copying, to appease the compiler.
    
    Change-Id: I580083d142fd19a4e7828c915b4846868fa8f917
    Reviewed-on: http://gerrit.openafs.org/10818
    Tested-by: BuildBot <[email protected]>
    Reviewed-by: Perry Ruiter <[email protected]>
    Reviewed-by: Jeffrey Altman <[email protected]>

 src/cmd/cmd.c |   11 +++++++----
 1 files changed, 7 insertions(+), 4 deletions(-)

-- 
OpenAFS Master Repository
_______________________________________________
OpenAFS-cvs mailing list
[email protected]
https://lists.openafs.org/mailman/listinfo/openafs-cvs

Reply via email to