From 3606df694f1ec074a4ca322a3c8e39e498960951 Mon Sep 17 00:00:00 2001 From: iovar Date: Sun, 29 Oct 2006 01:36:39 +0000 Subject: removed checksums(replaced with per -byte comparison) ,due to fundamental problem in the method.caching scheme is complete(for now). divisor is always 16 git-svn-id: https://recordmydesktop.svn.sourceforge.net/svnroot/recordmydesktop/trunk@125 f606c939-3180-4ac9-a4b8-4b8779d57d0a --- rMD-exp/src/rmd_cache.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'rMD-exp/src/rmd_cache.c') diff --git a/rMD-exp/src/rmd_cache.c b/rMD-exp/src/rmd_cache.c index bebd29e..9cb76d5 100644 --- a/rMD-exp/src/rmd_cache.c +++ b/rMD-exp/src/rmd_cache.c @@ -84,7 +84,7 @@ void InitCacheData(ProgData *pdata,EncData *enc_data_t,CacheData *cache_data_t){ fprintf(stderr,"Could not create temporary directory %s !!!\n",cache_data_t->projname); exit(13); } - cache_data_t->ifp=gzopen(cache_data_t->imgdata,"wb1f"); + cache_data_t->ifp=gzopen(cache_data_t->imgdata,"wb0f"); if(cache_data_t->ifp==NULL){ fprintf(stderr,"Could not create temporary file %s !!!\n",cache_data_t->imgdata); exit(13); @@ -96,7 +96,7 @@ void InitCacheData(ProgData *pdata,EncData *enc_data_t,CacheData *cache_data_t){ exit(13); } } - + } - + -- cgit v1.2.3