summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathias Stearn <mathias@10gen.com>2010-04-29 18:37:09 -0400
committerMathias Stearn <mathias@10gen.com>2010-04-29 18:37:09 -0400
commitea0fbff07b426a494be8857767453769768dd7b3 (patch)
treea50f7260c7a69eee89fe894929f1bf3ec07595ab
parent3e47000a1a85527334fb6150403df82d0e6066f4 (diff)
downloadmongo-ea0fbff07b426a494be8857767453769768dd7b3.tar.gz
remove duplicate $err
-rw-r--r--client/dbclientcursor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/dbclientcursor.h b/client/dbclientcursor.h
index 0a039615762..4c2860c2f7c 100644
--- a/client/dbclientcursor.h
+++ b/client/dbclientcursor.h
@@ -58,7 +58,7 @@ namespace mongo {
if( strcmp(e.fieldName(), "$err") == 0 ) {
if( logLevel >= 5 )
log() << "nextSafe() error " << o.toString() << endl;
- uassert(13106, "nextSafe() returns $err: " + o.toString(), false);
+ uassert(13106, "nextSafe() returns: " + o.toString(), false);
}
return o;
}