diff options
author | lloyd <[email protected]> | 2010-10-13 02:59:43 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-10-13 02:59:43 +0000 |
commit | 61ed0d4d90164675396feb7c7cecdd3bc5012f91 (patch) | |
tree | 31f48086086c78c6f0ce5fd533d819c8463be822 /src/libstate/lookup.cpp | |
parent | 3697dcff8b5e9765b41114281ce10e7ed3d3abb4 (diff) |
Remove most uses of HASH_BLOCK_SIZE
Diffstat (limited to 'src/libstate/lookup.cpp')
-rw-r--r-- | src/libstate/lookup.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstate/lookup.cpp b/src/libstate/lookup.cpp index ad0362264..d971618c2 100644 --- a/src/libstate/lookup.cpp +++ b/src/libstate/lookup.cpp @@ -40,7 +40,7 @@ u32bit block_size_of(const std::string& name) return cipher->block_size(); if(const HashFunction* hash = af.prototype_hash_function(name)) - return hash->HASH_BLOCK_SIZE; + return hash->hash_block_size(); throw Algorithm_Not_Found(name); } |