Date: Wed, 27 Nov 2002 13:21:27 -0600 From: "David W. Chapman Jr." <dwcjr@inethouston.net> To: current@freebsd.org Subject: pw_user.c change for samba Message-ID: <20021127192126.GA31706@leviathan.inethouston.net>
next in thread | raw e-mail | index | archive | help
[-- Attachment #1 --]
I know we're in a code freeze right now, but would anyone have a
problem with this patch once the freeze is up? This brings us closer
to allowing samba to automatically joining machines to the domain.
--
David W. Chapman Jr.
dwcjr@inethouston.net Raintree Network Services, Inc. <www.inethouston.net>
dwcjr@freebsd.org FreeBSD Committer <www.FreeBSD.org>
[-- Attachment #2 --]
Index: pw_user.c
===================================================================
RCS file: /home/ncvs/src/usr.sbin/pw/pw_user.c,v
retrieving revision 1.51
diff -u -r1.51 pw_user.c
--- pw_user.c 24 Jun 2002 11:33:17 -0000 1.51
+++ pw_user.c 27 Nov 2002 19:07:02 -0000
@@ -1195,7 +1195,7 @@
pw_checkname(u_char *name, int gecos)
{
int l = 0;
- char const *notch = gecos ? ":!@" : " ,\t:+&#%$^()!@~*?<>=|\\/\"";
+ char const *notch = gecos ? ":!@" : " ,\t:+&#%^()!@~*?<>=|\\/\"";
while (name[l]) {
if (strchr(notch, name[l]) != NULL || name[l] < ' ' || name[l] == 127 ||
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20021127192126.GA31706>
