diff options
author | 2000-03-23 15:23:51 +0000 | |
---|---|---|
committer | 2000-03-23 15:23:51 +0000 | |
commit | b032299f45a91864ad6c4128eaf94a0fcb85f8dc (patch) | |
tree | d7dc19190fa36dbf45c7ea9ff7f6e45f2904c870 | |
parent | Protect from multiple include. (diff) | |
download | wireguard-openbsd-b032299f45a91864ad6c4128eaf94a0fcb85f8dc.tar.xz wireguard-openbsd-b032299f45a91864ad6c4128eaf94a0fcb85f8dc.zip |
Change prompt string from "Location:" to "Office Location:", to disambiguate
from what is expected, and to be consistent with finger(1); from FreeBSD. This
file was missed from a previous commit. :-(
-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 5f7642301f9..4dd59b54aff 100644 --- a/usr.bin/chpass/table.c +++ b/usr.bin/chpass/table.c @@ -1,4 +1,4 @@ -/* $OpenBSD: table.c,v 1.3 1996/09/23 09:38:32 deraadt Exp $ */ +/* $OpenBSD: table.c,v 1.4 2000/03/23 15:23:51 aaron 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.3 1996/09/23 09:38:32 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: table.c,v 1.4 2000/03/23 15:23:51 aaron Exp $"; #endif #endif /* not lint */ @@ -60,7 +60,7 @@ ENTRY list[] = { { "full name", p_gecos, 0, 9, e2, }, { "office phone", p_gecos, 0, 12, e2, }, { "home phone", p_gecos, 0, 10, e2, }, - { "location", p_gecos, 0, 8, e2, }, + { "office location", p_gecos, 0, 15, e2, }, { "home directory", p_hdir, 1, 14, e1, }, { "shell", p_shell, 0, 5, e1, }, { NULL, 0, }, |