diff options
author | Yaroslav Tykhiy <ytykhiy@gmail.com> | 2001-07-30 16:50:47 +0000 |
---|---|---|
committer | Yaroslav Tykhiy <ytykhiy@gmail.com> | 2001-07-30 16:50:47 +0000 |
commit | b95dbabab38b10272ffc31e3fde47cd930360c57 (patch) | |
tree | a81a739443f073e8c3e3af780465eeec951f109c | |
parent | 4c9237c90814ffda83578a0728b590ae40abc065 (diff) |
Notes
-rw-r--r-- | usr.bin/finger/pathnames.h | 1 | ||||
-rw-r--r-- | usr.bin/finger/util.c | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/finger/pathnames.h b/usr.bin/finger/pathnames.h index 1da786ea7c5de..7c9ad19abcb61 100644 --- a/usr.bin/finger/pathnames.h +++ b/usr.bin/finger/pathnames.h @@ -29,6 +29,7 @@ #ifndef PATHNAMES_H #define _PATH_FORWARD ".forward" +#define _PATH_NOFINGER ".nofinger" #define _PATH_PLAN ".plan" #define _PATH_PROJECT ".project" #define _PATH_PUBKEY ".pubkey" diff --git a/usr.bin/finger/util.c b/usr.bin/finger/util.c index 2efa310972eaa..93b48890924e1 100644 --- a/usr.bin/finger/util.c +++ b/usr.bin/finger/util.c @@ -57,6 +57,7 @@ static const char rcsid[] = #include <unistd.h> #include <utmp.h> #include "finger.h" +#include "pathnames.h" static void find_idle_and_ttywrite __P((WHERE *)); static void userinfo __P((PERSON *, struct passwd *)); @@ -416,7 +417,7 @@ hide(pw) if (!pw->pw_dir) return 0; - snprintf(buf, sizeof(buf), "%s/.nofinger", pw->pw_dir); + snprintf(buf, sizeof(buf), "%s/%s", pw->pw_dir, _PATH_NOFINGER); if (access(buf, F_OK) == 0) return 1; |