summaryrefslogtreecommitdiff
path: root/src/mongo/db/cloner.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/cloner.cpp')
-rw-r--r--src/mongo/db/cloner.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/db/cloner.cpp b/src/mongo/db/cloner.cpp
index 4ea52d02a39..26eb5baa639 100644
--- a/src/mongo/db/cloner.cpp
+++ b/src/mongo/db/cloner.cpp
@@ -28,6 +28,7 @@
#include "mongo/db/instance.h"
#include "mongo/db/jsobj.h"
#include "mongo/db/kill_current_op.h"
+#include "mongo/db/namespacestring.h"
#include "mongo/db/pdfile.h"
#include "mongo/db/repl.h"
#include "mongo/db/sort_phase_one.h"
@@ -138,7 +139,7 @@ namespace mongo {
BSONObj js = tmp;
if ( isindex ) {
- verify( strstr(from_collection, "system.indexes") );
+ verify(NamespaceString(from_collection).coll == "system.indexes");
js = fixindex(tmp);
storedForLater->push_back( js.getOwned() );
continue;