aboutsummaryrefslogtreecommitdiffstats
path: root/src/pubkey/dh
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-05-13 10:28:25 +0000
committerlloyd <[email protected]>2009-05-13 10:28:25 +0000
commit59ad7882f0bf20327bc04860a0c0c27461d2a3a9 (patch)
tree1c6b63e8f38e4b551092dd00ea048ab79e32b660 /src/pubkey/dh
parent8a8169535702de9fd244de6409ed58ddca69452a (diff)
engine.h had copies of some declarations from pk_engine.h that had not
been removed when that portion of the code was split off. Remove the duplicated code from engine.h and update some code in pubkey that still relied on the declarations in engine.h instead of pk_engine.h
Diffstat (limited to 'src/pubkey/dh')
-rw-r--r--src/pubkey/dh/dh_core.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pubkey/dh/dh_core.cpp b/src/pubkey/dh/dh_core.cpp
index bd744a3e1..78a26a8ef 100644
--- a/src/pubkey/dh/dh_core.cpp
+++ b/src/pubkey/dh/dh_core.cpp
@@ -7,7 +7,7 @@
#include <botan/dh_core.h>
#include <botan/numthry.h>
-#include <botan/engine.h>
+#include <botan/pk_engine.h>
#include <botan/parsing.h>
#include <algorithm>