From 2ccd3522816291bd7e3ede3f60370d725d86e179 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Mon, 14 May 2018 11:14:58 +0200 Subject: popmaildir: placate gcc8 "warning: 'strncpy' output truncated" Signed-off-by: Denys Vlasenko --- mailutils/popmaildir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mailutils/popmaildir.c') diff --git a/mailutils/popmaildir.c b/mailutils/popmaildir.c index a4aad3662..589456715 100644 --- a/mailutils/popmaildir.c +++ b/mailutils/popmaildir.c @@ -265,7 +265,7 @@ int popmaildir_main(int argc UNUSED_PARAM, char **argv) // atomically move message to ./new/ target = xstrdup(filename); - strncpy(target, "new", 3); + memcpy(target, "new", 3); // ... or just stop receiving on failure if (rename_or_warn(filename, target)) break; -- cgit v1.2.3