From 141381e1cbdbd8001c13e9e8c0adbfc81d1b3cd0 Mon Sep 17 00:00:00 2001 From: imp Date: Sat, 29 Mar 1997 04:34:07 +0000 Subject: compare return value from getopt against -1 rather than EOF, per the final posix standard on the topic. --- usr.bin/kzip/kzip.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.bin/kzip/kzip.c') diff --git a/usr.bin/kzip/kzip.c b/usr.bin/kzip/kzip.c index 819efa2..8a8545d 100644 --- a/usr.bin/kzip/kzip.c +++ b/usr.bin/kzip/kzip.c @@ -9,7 +9,7 @@ * Copyright (C) 1993 Hannu Savolainen * Ported to 386bsd by Serge Vakulenko * based on tools/build.c by Linus Torvalds - * $Id$ + * $Id: kzip.c,v 1.7 1997/02/22 19:55:31 peter Exp $ * */ @@ -51,7 +51,7 @@ main(int argc, char **argv) char out[BUFSIZ]; char base[32]; - while ((c = getopt(argc, argv, "l:v")) != EOF) { + while ((c = getopt(argc, argv, "l:v")) != -1) { switch (c) { case 'l': forceaddr = strtoul(optarg, NULL, 0); -- cgit v1.1