Re: Proposed patch to /etc/rc

[ Available lists | Index of freebsd-hackers | Month of Mar 1999 | Week of 12 Mar 1999 | Raw email | View thread | Wrap long lines | Reply | Tag ]
From
Ollivier Robert <roberto@keltia.freenix.fr>
Date
12 Mar 1999 15:04:27
Subject
Re: Proposed patch to /etc/rc
Message-ID
19990312235111.A24106@keltia.freenix.fr

Replies
Referenced by

[ Hide this part ]
According to Chris Costello:
> Are there any advantages of user:group as opposed to user.group?

None to my knowledge, it is just that user.group is supposed to be more or
less deprecated.

The default is not to support the '.' form but our chown, for old BSD
compatibility, is compiled with -DSUPPORT_DOT (since 4.4BSD Lite).

-=-=-
if (ischown) {
if ((cp = strchr(*argv, ':')) != NULL) {
*cp++ = '\0';
a_gid(cp);
}
#ifdef SUPPORT_DOT
else if ((cp = strchr(*argv, '.')) != NULL) {
*cp++ = '\0';
a_gid(cp);
}
#endif
-=-=-
--
Ollivier ROBERT -=- FreeBSD: The Power to Serve! -=- roberto@keltia.freenix.fr
FreeBSD keltia.freenix.fr 4.0-CURRENT #70: Sat Feb 27 09:43:08 CET 1999



To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-hackers" in the body of the message



Elapsed time: 0.128 seconds