Fix bug #13036, patch by dfranke.

This commit is contained in:
Eric S. Raymond 2009-02-21 11:41:29 +00:00
parent 2a49125de7
commit 414f45296c

View file

@ -1074,7 +1074,7 @@ void send_raw_data(const char* buf, int len, connection connection_num, const st
if(!connection_num) {
for(sockets_list::const_iterator i = sockets.begin();
i != sockets.end(); ++i) {
send_raw_data(buf, len, connection_num, packet_type);
send_raw_data(buf, len, *i, packet_type);
}
return;
}