aboutsummaryrefslogtreecommitdiffstats
path: root/src/filters
diff options
context:
space:
mode:
authorlloyd <[email protected]>2013-12-10 03:30:24 +0000
committerlloyd <[email protected]>2013-12-10 03:30:24 +0000
commit748d7fd4b622ee3c9d95343e02ed945c217507f7 (patch)
treed2d1d58147b5b723b37f02133735ebca9bebd6ad /src/filters
parent4874b0727843bba925bcd3b5c0659c5f1cb059d9 (diff)
s/default_nonce_size/default_nonce_length/
Diffstat (limited to 'src/filters')
-rw-r--r--src/filters/transform_filter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filters/transform_filter.cpp b/src/filters/transform_filter.cpp
index e8033b1a8..2f25aa2c5 100644
--- a/src/filters/transform_filter.cpp
+++ b/src/filters/transform_filter.cpp
@@ -12,7 +12,7 @@ namespace Botan {
Transformation_Filter::Transformation_Filter(Transformation* transform) :
Buffered_Filter(transform->update_granularity(),
transform->minimum_final_size()),
- m_nonce(transform->default_nonce_size() == 0),
+ m_nonce(transform->default_nonce_length() == 0),
m_transform(transform),
m_buffer(m_transform->update_granularity())
{