aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorKevin Lo <kevlo@FreeBSD.org>2007-02-06 08:48:28 +0000
committerKevin Lo <kevlo@FreeBSD.org>2007-02-06 08:48:28 +0000
commit9c20ad30e025942adf28ce0291fcf5bfa92e2301 (patch)
treeb760551e3d33fadb07d26db7ad8ba4be639196c8 /usr.sbin
parent6a290a48ca7f5615f97f9f29f955fbb594a77c1c (diff)
Notes
Diffstat (limited to 'usr.sbin')
-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 4b4fc768348b..bd4673fda4b4 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 966a8a567e36..da4174c27e75 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 e4ba0b7ff93f..5747bca71384 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 5232645bbcae..26eea0468273 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;