]> git.cameronkatri.com Git - bsdgames-darwin.git/commitdiff
Use S_IS*(), not S_IF*.
authormycroft <mycroft@NetBSD.org>
Sun, 19 Oct 1997 17:54:18 +0000 (17:54 +0000)
committermycroft <mycroft@NetBSD.org>
Sun, 19 Oct 1997 17:54:18 +0000 (17:54 +0000)
fortune/fortune/fortune.c

index 16f14bdbcaa6f42f90234ab5bec8efcd505e8d46..e1d7dda0b245130f74719dd5071dd642ba9565fd 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: fortune.c,v 1.10 1997/10/12 14:17:27 lukem Exp $       */
+/*     $NetBSD: fortune.c,v 1.11 1997/10/19 17:58:53 mycroft Exp $     */
 
 /*-
  * Copyright (c) 1986, 1993
@@ -46,7 +46,7 @@ __COPYRIGHT("@(#) Copyright (c) 1986, 1993\n\
 #if 0
 static char sccsid[] = "@(#)fortune.c  8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: fortune.c,v 1.10 1997/10/12 14:17:27 lukem Exp $");
+__RCSID("$NetBSD: fortune.c,v 1.11 1997/10/19 17:58:53 mycroft Exp $");
 #endif
 #endif /* not lint */
 
@@ -727,7 +727,7 @@ is_dir(file)
 
        if (stat(file, &sbuf) < 0)
                return FALSE;
-       return (sbuf.st_mode & S_IFDIR);
+       return (S_ISDIR(sbuf.st_mode));
 }
 
 /*