Whamcloud - gitweb
Fix this bug, not sure why my CVS didn't show this as a diff.
authoradilger <adilger>
Tue, 20 Apr 2004 18:57:30 +0000 (18:57 +0000)
committeradilger <adilger>
Tue, 20 Apr 2004 18:57:30 +0000 (18:57 +0000)
b=3222

lustre/tests/cmknod.c

index 9faf8e2..c8659e4 100644 (file)
@@ -46,7 +46,7 @@ int main( int argc, char **argv)
                fprintf(stderr, "%s: created device other than requested: (%d,%d) instead of (%d,%d)\n", prog, major(st.st_rdev),minor(st.st_rdev),major(device),minor(device));
                return 4;
        }
-       if (!S_ISCHR(st.st_mode)) {
+       if (!S_ISBLK(st.st_mode)) {
                fprintf(stderr, "%s: created device of different type. Requested block device, got mode %o\n", prog, st.st_mode);
                return 5;
        }