1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Another fix to the hash signature algorithm in vfslog.c.

FossilOrigin-Name: 34212aa8c405c4ff3f8045ec0cf2a860af61540f
This commit is contained in:
drh
2013-10-10 13:41:04 +00:00
parent 7cd84ffc60
commit 919e3b3908
4 changed files with 10 additions and 10 deletions

View File

@ -327,7 +327,7 @@ static void vlogSignature(unsigned char *p, int n, char *zCksum){
pI += 2;
}
for(i=0; i<8; i++) sqlite3_snprintf(3, zCksum+i*2, "%02x", p[i]);
sqlite3_snprintf(18, zCksum+i*2, "-%08x08x", s0, s1);
sqlite3_snprintf(18, zCksum+i*2, "-%08x%08x", s0, s1);
}
}