summaryrefslogtreecommitdiff
path: root/src/mongo/client/dbclientinterface.h
diff options
context:
space:
mode:
authorSpencer T Brody <spencer@10gen.com>2013-06-11 15:17:05 -0400
committerSpencer T Brody <spencer@10gen.com>2013-06-14 16:08:33 -0400
commit85a5413d651d00849d63b96386584e36d5d845e3 (patch)
tree3b322fb6f2491bd38d735bca01ad471ce27a6883 /src/mongo/client/dbclientinterface.h
parentfcc103ba403fd35d96675f217c0e56d73eb14469 (diff)
downloadmongo-85a5413d651d00849d63b96386584e36d5d845e3.tar.gz
SERVER-6246 Add updateUser command and shell helper
Diffstat (limited to 'src/mongo/client/dbclientinterface.h')
-rw-r--r--src/mongo/client/dbclientinterface.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/client/dbclientinterface.h b/src/mongo/client/dbclientinterface.h
index 04c44cdb0fc..0ece5b3a2a1 100644
--- a/src/mongo/client/dbclientinterface.h
+++ b/src/mongo/client/dbclientinterface.h
@@ -658,7 +658,7 @@ namespace mongo {
*/
virtual unsigned long long count(const string &ns, const BSONObj& query = BSONObj(), int options=0, int limit=0, int skip=0 );
- string createPasswordDigest( const string &username , const string &clearTextPassword );
+ static string createPasswordDigest(const string &username, const string &clearTextPassword);
/** returns true in isMaster parm if this db is the current master
of a replica pair.