From fd876a27f769b22bfe6cd48f45cf3c4e3704c9b7 Mon Sep 17 00:00:00 2001 From: Eliot Horowitz Date: Thu, 28 Aug 2008 20:34:44 -0400 Subject: [PATCH] fix a possible typo?? dwight - please verify --- db/namespace.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/namespace.cpp b/db/namespace.cpp index f05e82fd67dc5..eea9f1e66fe43 100644 --- a/db/namespace.cpp +++ b/db/namespace.cpp @@ -327,7 +327,7 @@ void NamespaceDetailsTransient::computeIndexKeys() { */ void addNewNamespaceToCatalog(const char *ns, JSObj *options = 0) { log() << "New namespace: " << ns << endl; - if( strstr(ns, "system.namespaces``") ) { + if( strstr(ns, "system.namespaces") ) { // system.namespaces holds all the others, so it is not explicitly listed in the catalog. // TODO: fix above should not be strstr! return;