summaryrefslogtreecommitdiff
path: root/usr.bin/mg/fileio.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/mg/fileio.c')
-rw-r--r--usr.bin/mg/fileio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mg/fileio.c b/usr.bin/mg/fileio.c
index 5d8583abaaf..2ad4967f8da 100644
--- a/usr.bin/mg/fileio.c
+++ b/usr.bin/mg/fileio.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fileio.c,v 1.77 2006/07/25 08:22:32 kjell Exp $ */
+/* $OpenBSD: fileio.c,v 1.78 2006/09/19 05:52:23 otto Exp $ */
/* This file is in the public domain. */
@@ -518,7 +518,7 @@ make_file_list(char *buf)
continue;
if (stat(statname, &statbuf) < 0)
continue;
- if (statbuf.st_mode & S_IFDIR)
+ if (S_ISDIR(statbuf.st_mode))
isdir = 1;
}