fix delimiter for mitm connect

This commit is contained in:
radius 2017-05-21 12:04:50 -05:00
parent 26e5c28208
commit a09a1030c0

View File

@ -579,7 +579,7 @@ static void netplay_announce_cb(void *task_data, void *user_data, const char *er
host_string = (char*)calloc(1, ip_len + port_len + 2);
memcpy(host_string, mitm_ip, ip_len);
memcpy(host_string + ip_len, ":", 1);
memcpy(host_string + ip_len, "|", 1);
memcpy(host_string + ip_len + 1, mitm_port, port_len);
/* Enable Netplay */