summaryrefslogtreecommitdiffstats
path: root/usr.bin/locate
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>1997-03-29 04:34:07 +0000
committerimp <imp@FreeBSD.org>1997-03-29 04:34:07 +0000
commit141381e1cbdbd8001c13e9e8c0adbfc81d1b3cd0 (patch)
treeab151e53b638b3b80f31c7b8a8ab143c391d7b75 /usr.bin/locate
parent167db5291223948e17d74470feff53f15777fcaf (diff)
downloadFreeBSD-src-141381e1cbdbd8001c13e9e8c0adbfc81d1b3cd0.zip
FreeBSD-src-141381e1cbdbd8001c13e9e8c0adbfc81d1b3cd0.tar.gz
compare return value from getopt against -1 rather than EOF, per the final
posix standard on the topic.
Diffstat (limited to 'usr.bin/locate')
-rw-r--r--usr.bin/locate/code/locate.code.c4
-rw-r--r--usr.bin/locate/locate/locate.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/locate/code/locate.code.c b/usr.bin/locate/code/locate.code.c
index 2a87716..47d2059 100644
--- a/usr.bin/locate/code/locate.code.c
+++ b/usr.bin/locate/code/locate.code.c
@@ -34,7 +34,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id$
+ * $Id: locate.code.c,v 1.9 1997/02/22 19:55:43 peter Exp $
*/
#ifndef lint
@@ -132,7 +132,7 @@ main(argc, argv)
FILE *fp;
register int i, j;
- while ((ch = getopt(argc, argv, "")) != EOF)
+ while ((ch = getopt(argc, argv, "")) != -1)
switch(ch) {
default:
usage();
diff --git a/usr.bin/locate/locate/locate.c b/usr.bin/locate/locate/locate.c
index ca4578b..a9bed92 100644
--- a/usr.bin/locate/locate/locate.c
+++ b/usr.bin/locate/locate/locate.c
@@ -34,7 +34,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id$
+ * $Id: locate.c,v 1.9 1997/02/22 19:55:47 peter Exp $
*/
#ifndef lint
@@ -154,7 +154,7 @@ main(argc, argv)
#endif
(void) setlocale(LC_ALL, "");
- while ((ch = getopt(argc, argv, "Scd:il:ms")) != EOF)
+ while ((ch = getopt(argc, argv, "Scd:il:ms")) != -1)
switch(ch) {
case 'S': /* statistic lines */
f_statistic = 1;
OpenPOWER on IntegriCloud