aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-11-05 16:12:19 +0000
committerlloyd <[email protected]>2010-11-05 16:12:19 +0000
commit36c2c61e39541f1078d8a0ed83ef8cc090a9b89e (patch)
tree676d16f97c342c238f1627fcca5d9ddc468e8cff /src
parentb533365f46f008dad1d43c89b86ac817423f969a (diff)
Old function name, and made message confusing anyway
Diffstat (limited to 'src')
-rw-r--r--src/engine/core_engine/core_modes.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/engine/core_engine/core_modes.cpp b/src/engine/core_engine/core_modes.cpp
index 7cf7cf460..035cd41c7 100644
--- a/src/engine/core_engine/core_modes.cpp
+++ b/src/engine/core_engine/core_modes.cpp
@@ -217,8 +217,7 @@ Keyed_Filter* Core_Engine::get_cipher(const std::string& algo_spec,
if(filt)
return filt;
- throw Algorithm_Not_Found("get_mode: " + cipher_name + "/" +
- mode + "/" + padding);
+ throw Algorithm_Not_Found(cipher_name + "/" + mode + "/" + padding);
}
}