From 8bbdf4f8c4d817c9db6ca84112a5aa865e7bbf24 Mon Sep 17 00:00:00 2001 From: szaka Date: Wed, 5 Apr 2006 02:48:02 +0000 Subject: [PATCH] Quota attributum instantiation order change for better FORMAT conformance --- ntfsprogs/mkntfs.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ntfsprogs/mkntfs.c b/ntfsprogs/mkntfs.c index 5a688788..b090a095 100644 --- a/ntfsprogs/mkntfs.c +++ b/ntfsprogs/mkntfs.c @@ -4867,13 +4867,13 @@ static BOOL mkntfs_create_root_structures(void) MK_LE_MREF(24, 1), 0LL, 0LL, extend_flags, 0, 0, "$Quota", FILE_NAME_WIN32_AND_DOS); /* FIXME: This should be IGNORE_CASE */ - if (!err) - err = add_attr_index_root(m, "$O", 2, 0, AT_UNUSED, - COLLATION_NTOFS_SID, g_vol->indx_record_size); - /* FIXME: This should be IGNORE_CASE */ if (!err) err = add_attr_index_root(m, "$Q", 2, 0, AT_UNUSED, COLLATION_NTOFS_ULONG, g_vol->indx_record_size); + /* FIXME: This should be IGNORE_CASE */ + if (!err) + err = add_attr_index_root(m, "$O", 2, 0, AT_UNUSED, + COLLATION_NTOFS_SID, g_vol->indx_record_size); if (!err) err = initialize_quota(m); if (err < 0) {