From eb4285768bb0608e2c3381d0a5214cae83b1f282 Mon Sep 17 00:00:00 2001 From: Steve Ellcey Date: Tue, 12 Dec 2017 13:47:32 -0800 Subject: Use memcpy instead of strncpy in nscd/nscd.h to fix build problem with ToT GCC * nscd/nscd.h (init_traced_file): Change strncpy to memcpy. --- ChangeLog | 4 ++++ nscd/nscd.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 349030069a..817f0d3a1f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2017-12-12 Steve Ellcey + + * nscd/nscd.h (init_traced_file): Change strncpy to memcpy. + 2017-12-12 Adhemerval Zanella * libio/Makefile (tests): Add tst-bz22415. diff --git a/nscd/nscd.h b/nscd/nscd.h index c6b0a3c836..edcb5b6cde 100644 --- a/nscd/nscd.h +++ b/nscd/nscd.h @@ -108,7 +108,7 @@ init_traced_file(struct traced_file *file, const char *fname, int crinit) size_t len = (size_t)(dname - fname); if (len > sizeof (file->dname)) abort (); - strncpy (file->dname, file->fname, len); + memcpy (file->dname, file->fname, len); file->dname[len] = '\0'; } /* The basename is the name just after the last forward slash. */ -- cgit 1.4.1