diff options
author | des <des@FreeBSD.org> | 2001-01-04 10:03:44 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2001-01-04 10:03:44 +0000 |
commit | a2912f74e121ae7c6aa166a79775abed68904311 (patch) | |
tree | ad128a43aeab8a0366a8281db8e11d69eff51a03 /usr.bin/finger | |
parent | 9e93a7456b2c4850370b24d3b7bd9ee0f7d29d8d (diff) | |
download | FreeBSD-src-a2912f74e121ae7c6aa166a79775abed68904311.zip FreeBSD-src-a2912f74e121ae7c6aa166a79775abed68904311.tar.gz |
.publickey -> .pubkey to match other finger daemons.
Suggested by: assar
Diffstat (limited to 'usr.bin/finger')
-rw-r--r-- | usr.bin/finger/finger.1 | 4 | ||||
-rw-r--r-- | usr.bin/finger/lprint.c | 2 | ||||
-rw-r--r-- | usr.bin/finger/pathnames.h | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/finger/finger.1 b/usr.bin/finger/finger.1 index a97b014..cf38220 100644 --- a/usr.bin/finger/finger.1 +++ b/usr.bin/finger/finger.1 @@ -98,7 +98,7 @@ shell, mail status, and the contents of the files .Dq Pa .plan , .Dq Pa .project and -.Dq Pa .publickey +.Dq Pa .pubkey from the user's home directory. .Pp If idle time is at least a minute and less than a day, it is @@ -134,7 +134,7 @@ from displaying the contents of the .Dq Pa .plan , .Dq Pa .project and -.Dq Pa .publickey +.Dq Pa .pubkey files. .It Fl m Prevent matching of diff --git a/usr.bin/finger/lprint.c b/usr.bin/finger/lprint.c index bd321e1..6bf6050 100644 --- a/usr.bin/finger/lprint.c +++ b/usr.bin/finger/lprint.c @@ -96,7 +96,7 @@ lflag_print() if (!show_text(pn->dir, _PATH_PLAN, "Plan")) (void)printf("No Plan.\n"); (void)show_text(pn->dir, - _PATH_PUBLICKEY, "Public key"); + _PATH_PUBKEY, "Public key"); } } } diff --git a/usr.bin/finger/pathnames.h b/usr.bin/finger/pathnames.h index 404326c..1da786e 100644 --- a/usr.bin/finger/pathnames.h +++ b/usr.bin/finger/pathnames.h @@ -31,7 +31,7 @@ #define _PATH_FORWARD ".forward" #define _PATH_PLAN ".plan" #define _PATH_PROJECT ".project" -#define _PATH_PUBLICKEY ".publickey" +#define _PATH_PUBKEY ".pubkey" #ifndef _PATH_FINGERCONF #define _PATH_FINGERCONF "/etc/finger.conf" |