aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorRicardo Martins <[email protected]>2019-02-15 11:23:56 +0000
committerRicardo Martins <[email protected]>2019-02-15 11:23:56 +0000
commita3c9ed3b533717c6ad2f93e8fe99ff40f8900fbc (patch)
tree5fba6d4066d03a167978ba61f951893ba5e51244 /src/lib
parentad1896f06b2b5c76e2f401691a76e157c98fb4c3 (diff)
Renamed m_handle to m_prov as this is the variable name used elsewhere.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/rng/system_rng/system_rng.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/rng/system_rng/system_rng.cpp b/src/lib/rng/system_rng/system_rng.cpp
index 8abf8afdc..88a8e8f01 100644
--- a/src/lib/rng/system_rng/system_rng.cpp
+++ b/src/lib/rng/system_rng/system_rng.cpp
@@ -107,7 +107,7 @@ class System_RNG_Impl final : public RandomNumberGenerator
void clear() override { /* not possible */ }
std::string name() const override { return "crypto_ng"; }
private:
- BCRYPT_ALG_HANDLE m_handle;
+ BCRYPT_ALG_HANDLE m_prov;
};
#elif defined(BOTAN_TARGET_OS_HAS_ARC4RANDOM)