]> Zhao Yanbai Git Server - minix.git/commitdiff
correct to S_IFSOCK
authorBen Gras <ben@minix3.org>
Tue, 22 Jun 2010 16:35:48 +0000 (16:35 +0000)
committerBen Gras <ben@minix3.org>
Tue, 22 Jun 2010 16:35:48 +0000 (16:35 +0000)
include/sys/stat.h

index 739ce4792d2c4202133343f6f2f00bd566b83bd2..e67580b46609fd2a6c66ee88d3dace854d16568b 100644 (file)
@@ -65,7 +65,7 @@ struct stat {
 #define S_ISBLK(m)     (((m) & S_IFMT) == S_IFBLK)     /* is a block spec */
 #define S_ISLNK(m)     (((m) & S_IFMT) == S_IFLNK)     /* is a symlink */
 #define S_ISFIFO(m)    (((m) & S_IFMT) == S_IFIFO)     /* is a pipe/FIFO */
-#define S_ISSOCK(m)     (((m) & S_IFMT) == S_ISOCK)    /* is a socket */
+#define S_ISSOCK(m)     (((m) & S_IFMT) == S_IFSOCK)   /* is a socket */
 
 #define DEFFILEMODE     (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)