getopt returns -1 not EOF!
authormillert <millert@openbsd.org>
Mon, 20 Jan 1997 17:19:31 +0000 (17:19 +0000)
committermillert <millert@openbsd.org>
Mon, 20 Jan 1997 17:19:31 +0000 (17:19 +0000)
share/misc/getopt

index b5ec0e4..e26ed54 100644 (file)
@@ -2,7 +2,7 @@
  * Main/getopt(3) fragment.
  *
  *     from: @(#)getopt        5.3 (Berkeley) 3/28/94
- *     $Id: getopt,v 1.1.1.1 1995/10/18 08:44:44 deraadt Exp $
+ *     $Id: getopt,v 1.2 1997/01/20 17:19:31 millert Exp $
  */
 
 #include <sys/types.h>
@@ -18,7 +18,7 @@ main(argc, argv)
 {
        int ch;
 
-       while ((ch = getopt(argc, argv, "")) != EOF)
+       while ((ch = getopt(argc, argv, "")) != -1)
                switch (ch) {
                case '':
                        break;