Index: head/usr.sbin/pw/pw_user.c =================================================================== --- head/usr.sbin/pw/pw_user.c +++ head/usr.sbin/pw/pw_user.c @@ -632,7 +632,7 @@ reject = 0; if (gecos) { /* See if the name is valid as a gecos (comment) field. */ - badchars = ":!@"; + badchars = ":"; showtype = "gecos field"; } else { /* See if the name is valid as a userid or group. */ Index: head/usr.sbin/pw/tests/pw_useradd_test.sh =================================================================== --- head/usr.sbin/pw/tests/pw_useradd_test.sh +++ head/usr.sbin/pw/tests/pw_useradd_test.sh @@ -27,9 +27,9 @@ user_add_comments_body() { populate_etc_skel - atf_check -s exit:0 ${PW} useradd test -c "Test User,work,123,456" - atf_check -s exit:0 -o match:"^test:.*:Test User,work,123,456:" \ - grep "^test:.*:Test User,work,123,456:" $HOME/master.passwd + atf_check -s exit:0 ${PW} useradd test -c 'Test User,work!,123,user@example.com' + atf_check -s exit:0 -o match:'^test:.*:Test User,work!,123,user@example.com:' \ + grep '^test:.*:Test User,work!,123,user@example.com:' $HOME/master.passwd } # Test add user with comments and option -N