diff options
Diffstat (limited to 'db/common.cpp')
-rw-r--r-- | db/common.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/common.cpp b/db/common.cpp index bf78f8b71a1..44bc54d0ab0 100644 --- a/db/common.cpp +++ b/db/common.cpp @@ -26,7 +26,7 @@ namespace mongo { /* we use new here so we don't have to worry about destructor orders at program shutdown */ MongoMutex &dbMutex( *(new MongoMutex("rw:dbMutex")) ); - MongoMutex::MongoMutex(const char *name) : _m(name) { + MongoMutex::MongoMutex(const char *name) : _m(name) { _remapPrivateViewRequested = false; } |