diff options
author | lloyd <[email protected]> | 2012-04-20 16:47:03 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-04-20 16:47:03 +0000 |
commit | 61578f2b76645cc3dc99e48731c704a3975c51fc (patch) | |
tree | a5d74ef4ddf27a54268ff7c3bb3a70144deb6951 /src/tls | |
parent | 3d28b24668c59c70537d4cf842abfa61b800f539 (diff) |
Compile fix
Diffstat (limited to 'src/tls')
-rw-r--r-- | src/tls/tls_policy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tls/tls_policy.cpp b/src/tls/tls_policy.cpp index 1e019d33e..f240bebac 100644 --- a/src/tls/tls_policy.cpp +++ b/src/tls/tls_policy.cpp @@ -102,7 +102,7 @@ std::string Policy::choose_curve(const std::vector<std::string>& curve_names) co return ""; // no shared curve } -virtual DL_Group Policy::dh_group() const +DL_Group Policy::dh_group() const { return DL_Group("modp/ietf/2048"); } |