Fixed issues with expire introduced with latest millisecond resolution feature. Many time_t were not converted to long long, and one time() call was not replaced with mstime().

This commit is contained in:
antirez
2011-11-12 01:04:27 +01:00
parent 3570629f90
commit 4be855e757
4 changed files with 7 additions and 7 deletions

View File

@ -597,7 +597,7 @@ int rdbSave(char *filename) {
dictEntry *de;
char tmpfile[256];
int j;
time_t now = mstime();
long long now = mstime();
FILE *fp;
rio rdb;