diff options
Diffstat (limited to 'src/common/ceph_context.h')
-rw-r--r-- | src/common/ceph_context.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/common/ceph_context.h b/src/common/ceph_context.h index a8dfec55410..47aceb0f88e 100644 --- a/src/common/ceph_context.h +++ b/src/common/ceph_context.h @@ -32,8 +32,6 @@ class md_config_obs_t; struct md_config_t; class CephContextHook; class CephContextObs; -class CryptoNone; -class CryptoAES; class CryptoHandler; namespace ceph { @@ -165,8 +163,8 @@ private: std::map<std::string, AssociatedSingletonObject*> _associated_objs; // crypto - CryptoNone *_crypto_none; - CryptoAES *_crypto_aes; + CryptoHandler *_crypto_none; + CryptoHandler *_crypto_aes; // experimental CephContextObs *_cct_obs; |