summaryrefslogtreecommitdiff
path: root/client/dbclient.h
diff options
context:
space:
mode:
Diffstat (limited to 'client/dbclient.h')
-rw-r--r--client/dbclient.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/dbclient.h b/client/dbclient.h
index 54d0b1927e1..a0235bda21d 100644
--- a/client/dbclient.h
+++ b/client/dbclient.h
@@ -418,7 +418,7 @@ namespace mongo {
virtual bool dropCollection( const string &ns ){
string db = nsGetDB( ns );
string coll = nsGetCollection( ns );
- uassert( "no collection name", coll.size() );
+ uassert( 10011 , "no collection name", coll.size() );
BSONObj info;