Change prompt string from "Location:" to "Office Location:", to disambiguate
authoraaron <aaron@openbsd.org>
Sun, 5 Mar 2000 19:20:36 +0000 (19:20 +0000)
committeraaron <aaron@openbsd.org>
Sun, 5 Mar 2000 19:20:36 +0000 (19:20 +0000)
from what is expected, and to be consistent with finger(1); from FreeBSD.

usr.bin/chpass/chpass.1
usr.bin/chpass/edit.c

index 0589d92..d5cbacf 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: chpass.1,v 1.13 1999/08/21 19:34:40 niklas Exp $
+.\"    $OpenBSD: chpass.1,v 1.14 2000/03/05 19:20:36 aaron Exp $
 .\"    $NetBSD: chpass.1,v 1.7 1996/05/15 21:50:40 jtc Exp $
 .\"
 .\" Copyright (c) 1988, 1990, 1993
@@ -87,7 +87,7 @@ is a modification request and there is a local entry for the specified user.
 .Pp
 Possible display items are as follows:
 .Pp
-.Bl -tag -width "Home Directory:" -compact -offset indent
+.Bl -tag -width "Office Location:" -compact -offset indent
 .It Login:
 user's login name
 .It Password:
@@ -108,12 +108,12 @@ user's home directory
 user's login shell
 .It Full Name:
 user's real name
-.It Location:
-user's normal location
-.It Home Phone:
-user's home phone
+.It Office Location:
+user's office location
 .It Office Phone:
 user's office phone
+.It Home Phone:
+user's home phone
 .El
 .Pp
 The
index 6cc4067..53a759a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: edit.c,v 1.18 1999/12/05 20:18:35 millert Exp $       */
+/*     $OpenBSD: edit.c,v 1.19 2000/03/05 19:20:37 aaron Exp $ */
 /*     $NetBSD: edit.c,v 1.6 1996/05/15 21:50:45 jtc Exp $     */
 
 /*-
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)edit.c     8.3 (Berkeley) 4/2/94";
 #else
-static char rcsid[] = "$OpenBSD: edit.c,v 1.18 1999/12/05 20:18:35 millert Exp $";
+static char rcsid[] = "$OpenBSD: edit.c,v 1.19 2000/03/05 19:20:37 aaron Exp $";
 #endif
 #endif /* not lint */
 
@@ -130,7 +130,7 @@ display(tempname, fd, pw)
        p = strsep(&bp, ",");
        (void)fprintf(fp, "Full Name: %s\n", p ? p : "");
        p = strsep(&bp, ",");
-       (void)fprintf(fp, "Location: %s\n", p ? p : "");
+       (void)fprintf(fp, "Office Location: %s\n", p ? p : "");
        p = strsep(&bp, ",");
        (void)fprintf(fp, "Office Phone: %s\n", p ? p : "");
        p = strsep(&bp, ",");