From ece8b56697ae4fdc25fe3b7374a29919f62c3196 Mon Sep 17 00:00:00 2001 From: jpandre Date: Sat, 20 Oct 2007 15:27:44 +0000 Subject: [PATCH] Removed old unused code --- libntfs-3g/collate.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/libntfs-3g/collate.c b/libntfs-3g/collate.c index d19fc647..9f90db00 100644 --- a/libntfs-3g/collate.c +++ b/libntfs-3g/collate.c @@ -35,8 +35,6 @@ BOOL ntfs_is_collation_rule_supported(COLLATION_RULES cr) { - /* int i; */ - /* * FIXME: At the moment we only support COLLATION_BINARY, * COLLATION_NTOFS_ULONG and COLLATION_FILE_NAME so we return false @@ -47,14 +45,6 @@ BOOL ntfs_is_collation_rule_supported(COLLATION_RULES cr) && cr != COLLATION_FILE_NAME && cr != COLLATION_NTOFS_SECURITY_HASH) return FALSE; -/* JPA remove double checking - i = le32_to_cpu(cr); - if (((i >= 0) && (i <= 0x02)) || - ((i >= 0x10) && (i <= 0x13))) - return TRUE; - - return FALSE; -*/ return TRUE; }