summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/oplogreader.cpp
diff options
context:
space:
mode:
authorSpencer T Brody <spencer@10gen.com>2013-06-05 15:06:22 -0400
committerSpencer T Brody <spencer@10gen.com>2013-06-05 15:06:22 -0400
commit88641efac7eece815ee2f220dba56f1c9613541e (patch)
treeb60af6fa75dc3131e2b90786751a06a102018bfb /src/mongo/db/repl/oplogreader.cpp
parentcee9135e0f478bc60cbe599a6822c11fcbdb9dd0 (diff)
downloadmongo-88641efac7eece815ee2f220dba56f1c9613541e.tar.gz
Revert "SERVER-9518 Make all methods on AuthorizationManager non-static"
This reverts commit 7d37be060bd7db332ebeade1e1c0cf53d8b00cb3.
Diffstat (limited to 'src/mongo/db/repl/oplogreader.cpp')
-rw-r--r--src/mongo/db/repl/oplogreader.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mongo/db/repl/oplogreader.cpp b/src/mongo/db/repl/oplogreader.cpp
index 80168a2da0a..092a989e493 100644
--- a/src/mongo/db/repl/oplogreader.cpp
+++ b/src/mongo/db/repl/oplogreader.cpp
@@ -22,7 +22,6 @@
#include "mongo/base/counter.h"
#include "mongo/client/dbclientinterface.h"
#include "mongo/db/auth/authorization_manager.h"
-#include "mongo/db/auth/authorization_manager_global.h"
#include "mongo/db/auth/authorization_session.h"
#include "mongo/db/commands/server_status.h"
#include "mongo/db/dbhelpers.h"
@@ -51,7 +50,7 @@ namespace mongo {
* connection will be used for!
*/
bool replAuthenticate(DBClientBase *conn, bool skipAuthCheck) {
- if(!getGlobalAuthorizationManager()->isAuthEnabled()) {
+ if(!AuthorizationManager::isAuthEnabled()) {
return true;
}
if (!skipAuthCheck && !cc().getAuthorizationSession()->hasInternalAuthorization()) {
@@ -148,8 +147,7 @@ namespace mongo {
30 /* tcp timeout */));
string errmsg;
if ( !_conn->connect(hostName.c_str(), errmsg) ||
- (getGlobalAuthorizationManager()->isAuthEnabled() &&
- !replAuthenticate(_conn.get(), true)) ) {
+ (AuthorizationManager::isAuthEnabled() && !replAuthenticate(_conn.get(), true)) ) {
resetConnection();
log() << "repl: " << errmsg << endl;
return false;