Changes by: antona
Update of /cvsroot/linux-ntfs/ntfs-driver-2.4/linux/fs/ntfs
In directory usw-pr-cvs1:/tmp/cvs-serv5698
Modified Files:
Makefile inode.c
Log Message:
Remove bogus NULL check that the Stanford Checker complained about & bump
version number up to distinguish from the in kernel NTFS version.
Index: Makefile
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfs-driver-2.4/linux/fs/ntfs/Makefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -U2 -r1.1 -r1.2
--- Makefile 2001/06/11 23:20:31 1.1
+++ Makefile 2001/06/19 00:55:47 1.2
@@ -6,5 +6,5 @@
obj-m := $(O_TARGET)
# New version format started 3 February 2001.
-EXTRA_CFLAGS = -DNTFS_VERSION=\"1.1.15\" #-DDEBUG
+EXTRA_CFLAGS = -DNTFS_VERSION=\"1.1.16\" #-DDEBUG
include $(TOPDIR)/Rules.make
Index: inode.c
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfs-driver-2.4/linux/fs/ntfs/inode.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -U2 -r1.2 -r1.3
--- inode.c 2001/06/11 17:50:25 1.2
+++ inode.c 2001/06/19 00:55:47 1.3
@@ -418,6 +418,4 @@
ntfs_debug(DEBUG_FILE1, "Initializing inode %x\n", inum);
- if (!vol)
- ntfs_error("NO VOLUME!\n");
ino->i_number = inum;
ino->vol = vol;
|