avoid corrupting file cache on 64bits architectures that store time_t as 32 bits

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6619 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2013-08-26 17:44:38 +00:00
parent 299678b9c8
commit a98642dab5
2 changed files with 4 additions and 4 deletions

View file

@ -84,8 +84,8 @@ class HashCache
typedef struct
{
uint64_t size ;
time_t time_stamp ;
time_t modf_stamp ;
uint64_t time_stamp ;
uint64_t modf_stamp ;
std::string hash ;
} HashCacheInfo ;