From ef2935347099967cc7092fa7f472d91d51571468 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Tue, 24 Feb 2009 00:06:16 +0000 Subject: Whoa, lots of updates. Md5 is more general, nids, cache, cachestore, and cachestorenids all support synchronizing now. Url is pretty much done. --- src/tests/md5.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/tests') diff --git a/src/tests/md5.cpp b/src/tests/md5.cpp index dea957b..2e9c318 100644 --- a/src/tests/md5.cpp +++ b/src/tests/md5.cpp @@ -12,12 +12,12 @@ int main( int argc, char *argv[] ) Bu::File fIn( *argv, Bu::File::Read ); Bu::Md5 m; - char buf[1000]; + char buf[100000]; for(;;) { - int iRead = fIn.read( buf, 1000 ); + int iRead = fIn.read( buf, 100000 ); m.addData( buf, iRead ); - if( iRead < 1000 ) + if( iRead < 100000 ) break; } -- cgit v1.2.3