mirror of
https://github.com/RsyncProject/rsync.git
synced 2026-03-05 23:17:45 -05:00
Put the checksum seed at the end of the checksum2 buffer in md5 mode.
This commit is contained in:
@@ -56,11 +56,11 @@ void get_checksum2(char *buf, int32 len, char *sum)
|
||||
if (protocol_version >= 30) {
|
||||
uchar seedbuf[4];
|
||||
md5_begin(&m);
|
||||
md5_update(&m, (uchar *)buf, len);
|
||||
if (checksum_seed) {
|
||||
SIVAL(seedbuf, 0, checksum_seed);
|
||||
md5_update(&m, seedbuf, 4);
|
||||
}
|
||||
md5_update(&m, (uchar *)buf, len);
|
||||
md5_result(&m, (uchar *)sum);
|
||||
} else {
|
||||
int32 i;
|
||||
|
||||
Reference in New Issue
Block a user