diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-05-14 11:14:58 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-05-14 11:14:58 +0200 |
commit | 2ccd3522816291bd7e3ede3f60370d725d86e179 (patch) | |
tree | 58d6e9e41b1dd7acf06b8604708085bb7776d149 /mailutils | |
parent | 6027597fd1a1a9293818db4729625fff375bf907 (diff) |
popmaildir: placate gcc8 "warning: 'strncpy' output truncated"
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'mailutils')
-rw-r--r-- | mailutils/popmaildir.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |