diff options
author | Bernd Ahlers <bernd@cvs.openbsd.org> | 2006-12-16 14:21:16 +0000 |
---|---|---|
committer | Bernd Ahlers <bernd@cvs.openbsd.org> | 2006-12-16 14:21:16 +0000 |
commit | 8f208109f89ebfb11d1960c8cd67b596d07e6c82 (patch) | |
tree | 26721fa6c86e8bbcc60f0eb3d7cfb54081187d80 /usr.sbin | |
parent | 712de1daf3ff5ed943c56e47c6d39303760f8aa3 (diff) |
Fix two comments. ok reyk@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/hostatectl/hostatectl.c | 6 | ||||
-rw-r--r-- | usr.sbin/hoststatectl/hoststatectl.c | 6 | ||||
-rw-r--r-- | usr.sbin/relayctl/relayctl.c | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/usr.sbin/hostatectl/hostatectl.c b/usr.sbin/hostatectl/hostatectl.c index 05bc4caf935..68b75e01df6 100644 --- a/usr.sbin/hostatectl/hostatectl.c +++ b/usr.sbin/hostatectl/hostatectl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hostatectl.c,v 1.2 2006/12/16 12:47:18 reyk Exp $ */ +/* $OpenBSD: hostatectl.c,v 1.3 2006/12/16 14:21:15 bernd Exp $ */ /* * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org> @@ -57,7 +57,7 @@ usage(void) exit(1); } -/* dummy function so that ospfctl does not need libevent */ +/* dummy function so that hostatectl does not need libevent */ void imsg_event_add(struct imsgbuf *i) { @@ -78,7 +78,7 @@ main(int argc, char *argv[]) if ((res = parse(argc - 1, argv + 1)) == NULL) exit(1); - /* connect to ospfd control socket */ + /* connect to hostated control socket */ if ((ctl_sock = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) err(1, "socket"); diff --git a/usr.sbin/hoststatectl/hoststatectl.c b/usr.sbin/hoststatectl/hoststatectl.c index b69292c1b43..caa746546e6 100644 --- a/usr.sbin/hoststatectl/hoststatectl.c +++ b/usr.sbin/hoststatectl/hoststatectl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hoststatectl.c,v 1.2 2006/12/16 12:47:18 reyk Exp $ */ +/* $OpenBSD: hoststatectl.c,v 1.3 2006/12/16 14:21:15 bernd Exp $ */ /* * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org> @@ -57,7 +57,7 @@ usage(void) exit(1); } -/* dummy function so that ospfctl does not need libevent */ +/* dummy function so that hostatectl does not need libevent */ void imsg_event_add(struct imsgbuf *i) { @@ -78,7 +78,7 @@ main(int argc, char *argv[]) if ((res = parse(argc - 1, argv + 1)) == NULL) exit(1); - /* connect to ospfd control socket */ + /* connect to hostated control socket */ if ((ctl_sock = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) err(1, "socket"); diff --git a/usr.sbin/relayctl/relayctl.c b/usr.sbin/relayctl/relayctl.c index 86940034f3a..93b60588825 100644 --- a/usr.sbin/relayctl/relayctl.c +++ b/usr.sbin/relayctl/relayctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: relayctl.c,v 1.2 2006/12/16 12:47:18 reyk Exp $ */ +/* $OpenBSD: relayctl.c,v 1.3 2006/12/16 14:21:15 bernd Exp $ */ /* * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org> @@ -57,7 +57,7 @@ usage(void) exit(1); } -/* dummy function so that ospfctl does not need libevent */ +/* dummy function so that hostatectl does not need libevent */ void imsg_event_add(struct imsgbuf *i) { @@ -78,7 +78,7 @@ main(int argc, char *argv[]) if ((res = parse(argc - 1, argv + 1)) == NULL) exit(1); - /* connect to ospfd control socket */ + /* connect to hostated control socket */ if ((ctl_sock = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) err(1, "socket"); |