summaryrefslogtreecommitdiff
path: root/rMD-exp/src/rmd_cache.c
diff options
context:
space:
mode:
authoriovar <iovar@f606c939-3180-4ac9-a4b8-4b8779d57d0a>2006-10-29 01:36:39 +0000
committeriovar <iovar@f606c939-3180-4ac9-a4b8-4b8779d57d0a>2006-10-29 01:36:39 +0000
commit3606df694f1ec074a4ca322a3c8e39e498960951 (patch)
tree2a32d9cb8568f03e3c95a1c6d15c7447fc597704 /rMD-exp/src/rmd_cache.c
parent5076dbf5c8974316119d6bad42c413a3e3bf5ec9 (diff)
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
Diffstat (limited to 'rMD-exp/src/rmd_cache.c')
-rw-r--r--rMD-exp/src/rmd_cache.c6
1 files changed, 3 insertions, 3 deletions
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);
}
}
-
+
}
-
+
© All Rights Reserved