Changes by: antona
Update of /cvsroot/linux-ntfs/ntfs-driver-tng/linux/fs/ntfs
In directory usw-pr-cvs1:/tmp/cvs-serv5485/linux/fs/ntfs
Modified Files:
attrib.c
Log Message:
Fix typo.
Index: attrib.c
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfs-driver-tng/linux/fs/ntfs/attrib.c,v
retrieving revision 1.59
retrieving revision 1.60
diff -U2 -r1.59 -r1.60
--- attrib.c 10 Feb 2002 02:22:58 -0000 1.59
+++ attrib.c 10 Feb 2002 02:34:09 -0000 1.60
@@ -1417,5 +1417,5 @@
/* Sanity check, just for debugging really. */
BUG_ON(!base_ni);
- if (NInoAttrList(base_ni))
+ if (!NInoAttrList(base_ni))
return find_attr(type, name, name_len, ic, val, val_len, ctx);
return find_external_attr(type, name, name_len, ic, lowest_vcn, val,
|