0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 00:56:44 +01:00

wrong errno

This commit is contained in:
Dwight Merriman 2010-04-18 13:10:59 -04:00
parent aaf23bff89
commit a17c26a334

View File

@ -52,7 +52,7 @@ namespace mongo {
uassert(13096, "bad --replset config string - dups?", temp.count(m) == 0 ); // these uasserts leak seeds but that's ok
temp.insert(m);
uassert(10000, "can't use localhost in replset host list", !m.isLocalHost());
uassert(13101, "can't use localhost in replset host list", !m.isLocalHost());
if( m.isSelf() )
log() << "replSet: ignoring seed " << m.toString() << " (=self)" << endl;