aboutsummaryrefslogtreecommitdiffstats
path: root/wrappers
diff options
context:
space:
mode:
Diffstat (limited to 'wrappers')
-rw-r--r--wrappers/boost-python/src/filter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/wrappers/boost-python/src/filter.cpp b/wrappers/boost-python/src/filter.cpp
index 262622eef..830e090de 100644
--- a/wrappers/boost-python/src/filter.cpp
+++ b/wrappers/boost-python/src/filter.cpp
@@ -93,7 +93,7 @@ Filter* make_filter3(const std::string& name,
Cipher_Dir direction)
{
return return_or_raise(
- get_cipher(global_state(), name, key, direction),
+ get_cipher(name, key, direction),
name);
}
@@ -103,7 +103,7 @@ Filter* make_filter4(const std::string& name,
Cipher_Dir direction)
{
return return_or_raise(
- get_cipher(global_state(), name, key, iv, direction),
+ get_cipher(name, key, iv, direction),
name);
}