diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-09-23 09:38:33 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-09-23 09:38:33 +0000 |
commit | 7703926cf5551d884de61af6a6d2eb4da45bf423 (patch) | |
tree | 30cbdb176a5452d5496fffdece58f9f3845e8194 /usr.bin | |
parent | 6153e99b8c7a85c5431e3dc3b1f4ebe1f1ba2b32 (diff) |
correct field name
Diffstat (limited to 'usr.bin')
-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, }, |