diff options
author | Spencer T Brody <spencer@10gen.com> | 2012-12-20 21:13:58 -0500 |
---|---|---|
committer | Spencer T Brody <spencer@10gen.com> | 2012-12-21 14:42:08 -0500 |
commit | 63bceed94b36e41b38b0ddfc35f09dd8b7837e3f (patch) | |
tree | 2f75e53c50d8f93cc54cf7a079884ef5ad700c08 /src/mongo/client/dbclientinterface.h | |
parent | 0b48bffd8417f87201ab44f2c7b00cf5f77001e4 (diff) | |
download | mongo-63bceed94b36e41b38b0ddfc35f09dd8b7837e3f.tar.gz |
SERVER-7572 Remove almost all remaining references to AuthenticationInfo
Diffstat (limited to 'src/mongo/client/dbclientinterface.h')
-rw-r--r-- | src/mongo/client/dbclientinterface.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mongo/client/dbclientinterface.h b/src/mongo/client/dbclientinterface.h index 510371f0cfd..9b91ec8aa54 100644 --- a/src/mongo/client/dbclientinterface.h +++ b/src/mongo/client/dbclientinterface.h @@ -581,9 +581,7 @@ namespace mongo { /** Run a database command. Database commands are represented as BSON objects. Common database commands have prebuilt helper functions -- see below. If a helper is not available you can - directly call runCommand. If _authTable has been set, will append a BSON representation of - that AuthenticationTable to the command object, unless an AuthenticationTable object has been - passed to this method directly, in which case it will use that instead of _authTable. + directly call runCommand. @param dbname database name. Use "admin" for global administrative commands. @param cmd the command object to execute. For example, { ismaster : 1 } |