Example #1
0
void hcache_done()
{
	HCACHEFILE *file;
	for( file = hcachefilelist; file; file = file->next ) {
		hcache_writefile( file );
		hashdone(file->hcachehash);
	}
}
Example #2
0
void hcache_done()
{
	HCACHEFILE *file;
	for( file = hcachefilelist; file; file = file->next ) {
		hcache_writefile( file );
	}
#if OPT_BUILTIN_MD5CACHE_EXT
	checksums_writefile();
#endif /* OPT_BUILTIN_MD5CACHE_EXT */
	hashdone(hcachehash);
}