svn commit: r292026 - stable/10/usr.sbin/pw
Baptiste Daroussin
bapt at FreeBSD.org
Wed Dec 9 21:38:28 UTC 2015
Author: bapt
Date: Wed Dec 9 21:38:26 2015
New Revision: 292026
URL: https://svnweb.freebsd.org/changeset/base/292026
Log:
MFC: r291658
pw_checkname since the beginning is too strict on GECOS field,
relax it a bit so gecos can be used to store multibytes data.
This was unseen before FreeBSD 10.2 as this validation function was motly unused
since FreeBSD 10.2 the usage of this function has been generalized to improve
Reported by: des
Modified:
stable/10/usr.sbin/pw/pw_user.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/usr.sbin/pw/pw_user.c
==============================================================================
--- stable/10/usr.sbin/pw/pw_user.c Wed Dec 9 21:34:03 2015 (r292025)
+++ stable/10/usr.sbin/pw/pw_user.c Wed Dec 9 21:38:26 2015 (r292026)
@@ -640,7 +640,8 @@ pw_checkname(char *name, int gecos)
}
if (!reject) {
while (*ch) {
- if (strchr(badchars, *ch) != NULL || *ch < ' ' ||
+ if (strchr(badchars, *ch) != NULL ||
+ (!gecos && *ch < ' ') ||
*ch == 127) {
reject = 1;
break;
More information about the svn-src-stable-10
mailing list