diff options
author | 2007-01-09 00:45:32 +0000 | |
---|---|---|
committer | 2007-01-09 00:45:32 +0000 | |
commit | ee9f3836df89fb3934772023f7f0c1facd5afbd2 (patch) | |
tree | ec5ddeb5b38b9291a6c1fce14486e8a7b6e6f58c /usr.sbin/hoststatectl | |
parent | rename to hoststate{d,ctl}, using a repository copy (diff) | |
download | wireguard-openbsd-ee9f3836df89fb3934772023f7f0c1facd5afbd2.tar.xz wireguard-openbsd-ee9f3836df89fb3934772023f7f0c1facd5afbd2.zip |
adapt to rename
Diffstat (limited to 'usr.sbin/hoststatectl')
-rw-r--r-- | usr.sbin/hoststatectl/Makefile | 12 | ||||
-rw-r--r-- | usr.sbin/hoststatectl/hoststatectl.c | 4 | ||||
-rw-r--r-- | usr.sbin/hoststatectl/parser.c | 4 |
3 files changed, 10 insertions, 10 deletions
diff --git a/usr.sbin/hoststatectl/Makefile b/usr.sbin/hoststatectl/Makefile index cf9a63acd8b..f2260e3e920 100644 --- a/usr.sbin/hoststatectl/Makefile +++ b/usr.sbin/hoststatectl/Makefile @@ -1,13 +1,13 @@ -# $OpenBSD: Makefile,v 1.1 2006/12/16 11:45:07 reyk Exp $ +# $OpenBSD: Makefile,v 1.2 2007/01/09 00:45:32 deraadt Exp $ -.PATH: ${.CURDIR}/../hostated +.PATH: ${.CURDIR}/../hoststated -PROG= hostatectl -SRCS= buffer.c imsg.c log.c hostatectl.c parser.c +PROG= hoststatectl +SRCS= buffer.c imsg.c log.c hoststatectl.c parser.c -MAN= hostatectl.8 +MAN= hoststatectl.8 -CFLAGS+= -Wall -Werror -I${.CURDIR} -I${.CURDIR}/../hostated +CFLAGS+= -Wall -Werror -I${.CURDIR} -I${.CURDIR}/../hoststated CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes CFLAGS+= -Wmissing-declarations CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual diff --git a/usr.sbin/hoststatectl/hoststatectl.c b/usr.sbin/hoststatectl/hoststatectl.c index 9c81a0f6811..90ad447aa22 100644 --- a/usr.sbin/hoststatectl/hoststatectl.c +++ b/usr.sbin/hoststatectl/hoststatectl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hoststatectl.c,v 1.6 2006/12/16 18:50:33 reyk Exp $ */ +/* $OpenBSD: hoststatectl.c,v 1.7 2007/01/09 00:45:32 deraadt Exp $ */ /* * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org> @@ -36,7 +36,7 @@ #include <unistd.h> #include <event.h> -#include "hostated.h" +#include "hoststated.h" #include "parser.h" __dead void usage(void); diff --git a/usr.sbin/hoststatectl/parser.c b/usr.sbin/hoststatectl/parser.c index 43703a6622b..7112c06b2de 100644 --- a/usr.sbin/hoststatectl/parser.c +++ b/usr.sbin/hoststatectl/parser.c @@ -1,4 +1,4 @@ -/* $OpenBSD: parser.c,v 1.4 2006/12/16 18:50:33 reyk Exp $ */ +/* $OpenBSD: parser.c,v 1.5 2007/01/09 00:45:32 deraadt Exp $ */ /* * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org> @@ -32,7 +32,7 @@ #include <string.h> #include <event.h> -#include "hostated.h" +#include "hoststated.h" #include "parser.h" |