1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Small spelling fix

This commit is contained in:
Zetok Zalbavar 2015-01-13 15:55:06 +00:00
parent d74b95a7b7
commit a45b72701f
No known key found for this signature in database
GPG Key ID: 53137C3033F09008

View File

@ -355,7 +355,7 @@ void Core::bootstrapDht()
}
static int j = qrand() % listSize;
qDebug() << "Core: Bootstraping to the DHT ...";
qDebug() << "Core: Bootstrapping to the DHT ...";
int i=0;
while (i < 2) // i think the more we bootstrap, the more we jitter because the more we overwrite nodes
@ -363,10 +363,10 @@ void Core::bootstrapDht()
const Settings::DhtServer& dhtServer = dhtServerList[j % listSize];
if (tox_bootstrap_from_address(tox, dhtServer.address.toLatin1().data(),
dhtServer.port, CUserId(dhtServer.userId).data()) == 1)
qDebug() << QString("Core: Bootstraping from ")+dhtServer.name+QString(", addr ")+dhtServer.address.toLatin1().data()
qDebug() << QString("Core: Bootstrapping from ")+dhtServer.name+QString(", addr ")+dhtServer.address.toLatin1().data()
+QString(", port ")+QString().setNum(dhtServer.port);
else
qDebug() << "Core: Error bootstraping from "+dhtServer.name;
qDebug() << "Core: Error bootstrapping from "+dhtServer.name;
j++;
i++;