diff options
Diffstat (limited to 'Swiften/FileTransfer/IncrementalBytestreamHashCalculator.cpp')
| -rw-r--r-- | Swiften/FileTransfer/IncrementalBytestreamHashCalculator.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Swiften/FileTransfer/IncrementalBytestreamHashCalculator.cpp b/Swiften/FileTransfer/IncrementalBytestreamHashCalculator.cpp index f177304..faddcb9 100644 --- a/Swiften/FileTransfer/IncrementalBytestreamHashCalculator.cpp +++ b/Swiften/FileTransfer/IncrementalBytestreamHashCalculator.cpp | |||
| @@ -64,12 +64,12 @@ ByteArray IncrementalBytestreamHashCalculator::getMD5Hash() { | |||
| 64 | 64 | ||
| 65 | std::string IncrementalBytestreamHashCalculator::getSHA1String() { | 65 | std::string IncrementalBytestreamHashCalculator::getSHA1String() { |
| 66 | assert(sha1Hasher); | 66 | assert(sha1Hasher); |
| 67 | return Hexify::hexify(getSHA1Hash());; | 67 | return Hexify::hexify(getSHA1Hash()); |
| 68 | } | 68 | } |
| 69 | 69 | ||
| 70 | std::string IncrementalBytestreamHashCalculator::getMD5String() { | 70 | std::string IncrementalBytestreamHashCalculator::getMD5String() { |
| 71 | assert(md5Hasher); | 71 | assert(md5Hasher); |
| 72 | return Hexify::hexify(getMD5Hash());; | 72 | return Hexify::hexify(getMD5Hash()); |
| 73 | } | 73 | } |
| 74 | 74 | ||
| 75 | } | 75 | } |
Swift