diff options
author | ed <ed@FreeBSD.org> | 2009-12-28 20:54:34 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2009-12-28 20:54:34 +0000 |
commit | 5bf232465b8e0def3c04c6e47745b969162463fe (patch) | |
tree | 572b8cc48e0e4fce2e62ea0eb3f0cf8dc6028a53 /usr.bin/finger/lprint.c | |
parent | f60568ce2e9a52bcb63e2ad46f8bc34bf16b6273 (diff) | |
download | FreeBSD-src-5bf232465b8e0def3c04c6e47745b969162463fe.zip FreeBSD-src-5bf232465b8e0def3c04c6e47745b969162463fe.tar.gz |
Migrate finger(1) away from <utmp.h>.
Unfortunately it also uses lastlog, which means we must resort to local
extensions of the utmpx-interface. Because the user name and TTY name
are now nul-terminated, there is no need to copy around strings as
often.
Diffstat (limited to 'usr.bin/finger/lprint.c')
-rw-r--r-- | usr.bin/finger/lprint.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/finger/lprint.c b/usr.bin/finger/lprint.c index 848bbee..c473c7f 100644 --- a/usr.bin/finger/lprint.c +++ b/usr.bin/finger/lprint.c @@ -56,8 +56,9 @@ __FBSDID("$FreeBSD$"); #include <pwd.h> #include <stdio.h> #include <string.h> +#define _ULOG_POSIX_NAMES +#include <ulog.h> #include <unistd.h> -#include <utmp.h> #include "finger.h" #include "pathnames.h" |