diff options
author | Billy Donahue <billy.donahue@mongodb.com> | 2019-01-04 12:19:37 -0500 |
---|---|---|
committer | Billy Donahue <billy.donahue@mongodb.com> | 2019-01-07 12:08:23 -0500 |
commit | 11bb071e91461b1f8e40b9b15ddf3b9e1a2d23d1 (patch) | |
tree | 7037865f9bf4445fb3295ca7ce72f4182f012554 /src/mongo/db/auth/sasl_options.h | |
parent | 6a0a21214dd96663c899cb8f2562d6121351ed3c (diff) | |
download | mongo-11bb071e91461b1f8e40b9b15ddf3b9e1a2d23d1.tar.gz |
SERVER-36644 remove AtomicWord typedefs
Diffstat (limited to 'src/mongo/db/auth/sasl_options.h')
-rw-r--r-- | src/mongo/db/auth/sasl_options.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/auth/sasl_options.h b/src/mongo/db/auth/sasl_options.h index c88da92b615..b9df88e04cf 100644 --- a/src/mongo/db/auth/sasl_options.h +++ b/src/mongo/db/auth/sasl_options.h @@ -51,9 +51,9 @@ struct SASLGlobalParams { std::string hostName; std::string serviceName; std::string authdPath; - AtomicInt32 scramSHA1IterationCount; - AtomicInt32 scramSHA256IterationCount; - AtomicInt32 authFailedDelay; + AtomicWord<int> scramSHA1IterationCount; + AtomicWord<int> scramSHA256IterationCount; + AtomicWord<int> authFailedDelay; SASLGlobalParams(); }; |