xl: bit-rot algo was not set in get-object. (#3652)

fixes #3650
This commit is contained in:
Krishna Srinivas 2017-01-30 14:25:28 -08:00 committed by Harshavardhana
parent 2665aba555
commit b288eaddb3
1 changed files with 1 additions and 1 deletions

View File

@ -287,7 +287,7 @@ func (xl xlObjects) GetObject(bucket, object string, startOffset int64, length i
// Set checksum algo only once, while it is possible to have // Set checksum algo only once, while it is possible to have
// different algos per block because of our `xl.json`. // different algos per block because of our `xl.json`.
// It is not a requirement, set this only once for all the disks. // It is not a requirement, set this only once for all the disks.
if ckSumAlgo != "" { if ckSumAlgo == "" {
ckSumAlgo = ckSumInfo.Algorithm ckSumAlgo = ckSumInfo.Algorithm
} }
} }