summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ngctl
diff options
context:
space:
mode:
authorkevlo <kevlo@FreeBSD.org>2007-02-06 08:48:28 +0000
committerkevlo <kevlo@FreeBSD.org>2007-02-06 08:48:28 +0000
commit5a57d3e796ffd97cbe691cc76f89dde9f18d3ba7 (patch)
treeb760551e3d33fadb07d26db7ad8ba4be639196c8 /usr.sbin/ngctl
parent3a4cc1b454c5ab12ed138c2d9e5d2f4653369cef (diff)
downloadFreeBSD-src-5a57d3e796ffd97cbe691cc76f89dde9f18d3ba7.zip
FreeBSD-src-5a57d3e796ffd97cbe691cc76f89dde9f18d3ba7.tar.gz
getopt(3) returns -1, not EOF.
Diffstat (limited to 'usr.sbin/ngctl')
-rw-r--r--usr.sbin/ngctl/dot.c2
-rw-r--r--usr.sbin/ngctl/list.c2
-rw-r--r--usr.sbin/ngctl/main.c2
-rw-r--r--usr.sbin/ngctl/show.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/ngctl/dot.c b/usr.sbin/ngctl/dot.c
index 4b4fc76..bd4673f 100644
--- a/usr.sbin/ngctl/dot.c
+++ b/usr.sbin/ngctl/dot.c
@@ -70,7 +70,7 @@ DotCmd(int ac, char **av)
/* Get options */
optind = 1;
- while ((ch = getopt(ac, av, "")) != EOF) {
+ while ((ch = getopt(ac, av, "")) != -1) {
switch (ch) {
case '?':
default:
diff --git a/usr.sbin/ngctl/list.c b/usr.sbin/ngctl/list.c
index 966a8a5..da4174c 100644
--- a/usr.sbin/ngctl/list.c
+++ b/usr.sbin/ngctl/list.c
@@ -73,7 +73,7 @@ ListCmd(int ac, char **av)
/* Get options */
optind = 1;
- while ((ch = getopt(ac, av, "ln")) != EOF) {
+ while ((ch = getopt(ac, av, "ln")) != -1) {
switch (ch) {
case 'l':
list_hooks = 1;
diff --git a/usr.sbin/ngctl/main.c b/usr.sbin/ngctl/main.c
index e4ba0b7..5747bca 100644
--- a/usr.sbin/ngctl/main.c
+++ b/usr.sbin/ngctl/main.c
@@ -147,7 +147,7 @@ main(int ac, char *av[])
snprintf(name, sizeof(name), "ngctl%d", getpid());
/* Parse command line */
- while ((ch = getopt(ac, av, "df:n:")) != EOF) {
+ while ((ch = getopt(ac, av, "df:n:")) != -1) {
switch (ch) {
case 'd':
NgSetDebug(NgSetDebug(-1) + 1);
diff --git a/usr.sbin/ngctl/show.c b/usr.sbin/ngctl/show.c
index 5232645..26eea04 100644
--- a/usr.sbin/ngctl/show.c
+++ b/usr.sbin/ngctl/show.c
@@ -70,7 +70,7 @@ ShowCmd(int ac, char **av)
/* Get options */
optind = 1;
- while ((ch = getopt(ac, av, "n")) != EOF) {
+ while ((ch = getopt(ac, av, "n")) != -1) {
switch (ch) {
case 'n':
no_hooks = 1;
OpenPOWER on IntegriCloud