mirror of
https://github.com/vgough/encfs.git
synced 2024-11-25 01:13:12 +01:00
fix compiler signed comparison warning
git-svn-id: http://encfs.googlecode.com/svn/trunk@100 db9cf616-1c43-0410-9cb8-a902689de0d6
This commit is contained in:
parent
bd182db260
commit
2d90473d09
@ -407,7 +407,8 @@ bool CipherV1::pseudoRandomize( byte *buf, int len )
|
||||
bool CipherV1::setKey(const CipherKey &keyIv) {
|
||||
Lock l(_hmacMutex);
|
||||
|
||||
LOG_IF(ERROR, _keySize != keyIv.size()) << "Mismatched key size: passed "
|
||||
LOG_IF(ERROR, (int)_keySize != keyIv.size())
|
||||
<< "Mismatched key size: passed "
|
||||
<< keyIv.size() << ", expecting " << _keySize;
|
||||
|
||||
// Key is actually key plus iv, so extract the different parts.
|
||||
|
Loading…
Reference in New Issue
Block a user