From 691010efad5c05f7ee86a870abce217fe8e9b8d1 Mon Sep 17 00:00:00 2001 From: imp Date: Mon, 31 Mar 1997 05:11:47 +0000 Subject: compare return value from getopt against -1 rather than EOF, per the final posix standard on the topic. --- usr.sbin/rndcontrol/rndcontrol.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.sbin/rndcontrol/rndcontrol.c') diff --git a/usr.sbin/rndcontrol/rndcontrol.c b/usr.sbin/rndcontrol/rndcontrol.c index 9582dd5..a03225c 100644 --- a/usr.sbin/rndcontrol/rndcontrol.c +++ b/usr.sbin/rndcontrol/rndcontrol.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: rndcontrol.c,v 1.6 1997/02/22 16:12:47 peter Exp $ + * $Id: rndcontrol.c,v 1.7 1997/03/11 15:56:09 peter Exp $ * */ @@ -61,7 +61,7 @@ main(int argc, char *argv[]) return (1); } else { - while ((ch = getopt(argc, argv, "qs:c:")) != EOF) + while ((ch = getopt(argc, argv, "qs:c:")) != -1) switch (ch) { case 'q': verbose = 0; -- cgit v1.1