diff options
author | 1996-09-23 09:38:32 +0000 | |
---|---|---|
committer | 1996-09-23 09:38:32 +0000 | |
commit | a4587f7cf55a8ad9e37237f2987d057e935cfd25 (patch) | |
tree | d6b23ec9966b1b1cc8031ae207678366c5715b88 | |
parent | make tmp right mode (diff) | |
download | wireguard-openbsd-a4587f7cf55a8ad9e37237f2987d057e935cfd25.tar.xz wireguard-openbsd-a4587f7cf55a8ad9e37237f2987d057e935cfd25.zip |
correct field name
-rw-r--r-- | usr.bin/chpass/table.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/chpass/table.c b/usr.bin/chpass/table.c index bb63e886be5..5f7642301f9 100644 --- a/usr.bin/chpass/table.c +++ b/usr.bin/chpass/table.c @@ -1,4 +1,4 @@ -/* $OpenBSD: table.c,v 1.2 1996/06/26 05:31:59 deraadt Exp $ */ +/* $OpenBSD: table.c,v 1.3 1996/09/23 09:38:32 deraadt Exp $ */ /* $NetBSD: table.c,v 1.3 1995/03/26 04:55:34 glass Exp $ */ /*- @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)table.c 8.3 (Berkeley) 4/2/94"; #else -static char rcsid[] = "$OpenBSD: table.c,v 1.2 1996/06/26 05:31:59 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: table.c,v 1.3 1996/09/23 09:38:32 deraadt Exp $"; #endif #endif /* not lint */ @@ -51,7 +51,7 @@ char e2[] = ":,"; ENTRY list[] = { { "login", p_login, 1, 5, e1, }, - { "password", p_passwd, 1, 8, e1, }, + { "encrypted password", p_passwd, 1, 8, e1, }, { "uid", p_uid, 1, 3, e1, }, { "gid", p_gid, 1, 3, e1, }, { "class", p_class, 1, 5, e1, }, |