(svn r16265) -Fix (r16238): wrong format string for debug output

This commit is contained in:
smatz
2009-05-10 13:23:23 +00:00
parent cb66ca57c1
commit e5529d8995
2 changed files with 3 additions and 3 deletions

View File

@@ -507,8 +507,8 @@ void NetworkUDPAdvertiseThread(void *pntr)
DEBUG(net, 0, "[udp] advertising to the master server is failing");
DEBUG(net, 0, "[udp] we are not receiving the acknowledgement from the server");
DEBUG(net, 0, "[udp] this usually means that the master server cannot reach us");
DEBUG(net, 0, "[udp] please allow udp and tcp packets to port %s to be delivered", _settings_client.network.server_port);
DEBUG(net, 0, "[udp] please allow udp and tcp packets from port %s to be delivered", _settings_client.network.server_port);
DEBUG(net, 0, "[udp] please allow udp and tcp packets to port %u to be delivered", _settings_client.network.server_port);
DEBUG(net, 0, "[udp] please allow udp and tcp packets from port %u to be delivered", _settings_client.network.server_port);
}
/* Send the packet */