summaryrefslogtreecommitdiff
path: root/client/dbclient.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'client/dbclient.cpp')
-rw-r--r--client/dbclient.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/client/dbclient.cpp b/client/dbclient.cpp
index af87cd463d6..e776d144f5f 100644
--- a/client/dbclient.cpp
+++ b/client/dbclient.cpp
@@ -25,6 +25,7 @@
#include "../db/instance.h"
#include "../util/md5.hpp"
#include "../db/dbmessage.h"
+#include "../db/cmdline.h"
namespace mongo {
@@ -417,7 +418,7 @@ namespace mongo {
ip = serverAddress.substr( 0 , idx );
ip = hostbyname(ip.c_str());
} else {
- port = DBPort;
+ port = CmdLine::DefaultDBPort;
ip = hostbyname( serverAddress.c_str() );
}
massert( "Unable to parse hostname", !ip.empty() );