diff options
author | ed <ed@FreeBSD.org> | 2010-01-13 18:28:58 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2010-01-13 18:28:58 +0000 |
commit | 6dd5ce59c1f83726b050d89474c42f34919a7395 (patch) | |
tree | 6788be15d1662e1d1fb8aa45a5cc58ec190881f8 /libexec/talkd | |
parent | a0af351d02a6107aa858c4b27ec786f93c2cd0cb (diff) | |
download | FreeBSD-src-6dd5ce59c1f83726b050d89474c42f34919a7395.zip FreeBSD-src-6dd5ce59c1f83726b050d89474c42f34919a7395.tar.gz |
Port all apps in libexec/ from libulog to utmpx.
Diffstat (limited to 'libexec/talkd')
-rw-r--r-- | libexec/talkd/Makefile | 4 | ||||
-rw-r--r-- | libexec/talkd/process.c | 3 |
2 files changed, 1 insertions, 6 deletions
diff --git a/libexec/talkd/Makefile b/libexec/talkd/Makefile index 7f82f1f..cc0c597 100644 --- a/libexec/talkd/Makefile +++ b/libexec/talkd/Makefile @@ -7,8 +7,4 @@ SRCS= talkd.c announce.c process.c table.c print.c ttymsg.c MAN= talkd.8 CFLAGS+=-I${.CURDIR}/../../usr.bin/wall - -DPADD= ${LIBULOG} -LDADD= -lulog - .include <bsd.prog.mk> diff --git a/libexec/talkd/process.c b/libexec/talkd/process.c index d796cd5..18ddc42 100644 --- a/libexec/talkd/process.c +++ b/libexec/talkd/process.c @@ -59,8 +59,7 @@ static const char rcsid[] = #include <stdio.h> #include <string.h> #include <syslog.h> -#define _ULOG_POSIX_NAMES -#include <ulog.h> +#include <utmpx.h> #include "extern.h" |