Use strlcpy().

MFC after:	2 weeks
This commit is contained in:
delphij 2017-12-05 07:21:47 +00:00
parent 805a2c95ad
commit 739ac49229

View File

@ -1077,7 +1077,7 @@ user(char *name)
}
}
if (logging)
strncpy(curname, name, sizeof(curname)-1);
strlcpy(curname, name, sizeof(curname));
pwok = 0;
#ifdef USE_PAM