From 304e05baeabf42875c3bb5fb0e0c0d0deea978c9 Mon Sep 17 00:00:00 2001 From: dsandersoremutah Date: Tue, 3 Oct 2006 22:39:43 +0000 Subject: [PATCH] Modified check db test to allow a block size of 4096 git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@955 0109f412-320b-0410-ab79-c3e0c5ffbbe6 --- xflaim/csharp/cstest/CheckDbTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xflaim/csharp/cstest/CheckDbTest.cs b/xflaim/csharp/cstest/CheckDbTest.cs index 6b71bac..6c34384 100644 --- a/xflaim/csharp/cstest/CheckDbTest.cs +++ b/xflaim/csharp/cstest/CheckDbTest.cs @@ -118,7 +118,7 @@ namespace cstest System.Console.WriteLine( "Invalid signature in database header"); return( false); } - if (dbHdr.ui16BlockSize != 8192) + if (dbHdr.ui16BlockSize != 8192 && dbHdr.ui16BlockSize != 4096) { endTest( true, false); System.Console.WriteLine( "Invalid block size in database header");