aboutsummaryrefslogtreecommitdiffstats
path: root/src/cli/pubkey.cpp
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2016-03-05 13:10:30 -0500
committerJack Lloyd <[email protected]>2016-03-05 13:10:30 -0500
commita3ce0bd1e9e018ea69741c4380bf065cccedec93 (patch)
tree71eac335b7bdc3a845b1d6599b78e337ad00433c /src/cli/pubkey.cpp
parent2467ccccd48fc502ee3e04d847d514e88d88b144 (diff)
parentc3540ae668a523c0155677c4ee4c9099910110bc (diff)
Make almost all single argument constructors `explicit`
GH #444
Diffstat (limited to 'src/cli/pubkey.cpp')
-rw-r--r--src/cli/pubkey.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/pubkey.cpp b/src/cli/pubkey.cpp
index cc02e02fc..a482b6e46 100644
--- a/src/cli/pubkey.cpp
+++ b/src/cli/pubkey.cpp
@@ -67,7 +67,7 @@ class PK_Keygen final : public Command
if(param.empty())
param = "dsa/botan/2048";
return std::unique_ptr<Botan::Private_Key>(
- new Botan::DSA_PrivateKey(rng, param));
+ new Botan::DSA_PrivateKey(rng, Botan::DL_Group(param)));
};
#endif