diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-11-21 22:13:21 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-11-21 22:13:21 +0000 |
commit | 0bd8b5c75e3cf3be61bf01ffbf30ed7ed7ccfd84 (patch) | |
tree | 4237324e60dc47309979573c85ee11c0bc407970 | |
parent | 03ee98ead91ce3497b3d121f536ff9fd054a9021 (diff) |
Rename shadow group to _shadow
This means the instructions in the previous commit are now wrong
(replace shadow with _shadow and all will be well).
-rw-r--r-- | usr.sbin/pwd_mkdb/pwd_mkdb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/pwd_mkdb/pwd_mkdb.c b/usr.sbin/pwd_mkdb/pwd_mkdb.c index 728ad2505ec..39db87373d5 100644 --- a/usr.sbin/pwd_mkdb/pwd_mkdb.c +++ b/usr.sbin/pwd_mkdb/pwd_mkdb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pwd_mkdb.c,v 1.31 2002/11/21 21:25:19 millert Exp $ */ +/* $OpenBSD: pwd_mkdb.c,v 1.32 2002/11/21 22:13:20 millert Exp $ */ /*- * Copyright (c) 1991, 1993, 1994 @@ -45,7 +45,7 @@ static char copyright[] = #if 0 static char sccsid[] = "from: @(#)pwd_mkdb.c 8.5 (Berkeley) 4/20/94"; #else -static char *rcsid = "$OpenBSD: pwd_mkdb.c,v 1.31 2002/11/21 21:25:19 millert Exp $"; +static char *rcsid = "$OpenBSD: pwd_mkdb.c,v 1.32 2002/11/21 22:13:20 millert Exp $"; #endif #endif /* not lint */ @@ -75,7 +75,7 @@ static char *rcsid = "$OpenBSD: pwd_mkdb.c,v 1.31 2002/11/21 21:25:19 millert Ex #define FILE_INSECURE 0x02 #define FILE_ORIG 0x04 -#define SHADOW_GROUP "shadow" +#define SHADOW_GROUP "_shadow" HASHINFO openinfo = { 4096, /* bsize */ |