remove an infamous birarda extra g

This commit is contained in:
Stephen Birarda 2013-10-17 17:54:52 -07:00
parent ded7735572
commit 11a05481e1

View file

@ -679,7 +679,7 @@ void NodeList::possiblyPingInactiveNodes() {
gettimeofday(&lastPing, NULL);
for(NodeList::iterator node = begin(); node != end(); node++) {
if (!node->getActiveSocket()) {g
if (!node->getActiveSocket()) {
// we don't have an active link to this node, ping it to set that up
pingPublicAndLocalSocketsForInactiveNode(&(*node));
}