summaryrefslogtreecommitdiff
path: root/src/network/network_client.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-07-17 12:02:09 +0000
committerrubidium <rubidium@openttd.org>2008-07-17 12:02:09 +0000
commit31d283c6c88464837dd57b78f75394367c4d40f7 (patch)
treeebcf2129e563dba0fc89c43b32843460fc0f826e /src/network/network_client.cpp
parent348600eca9cfed3894798c40cdf6a3e54870c852 (diff)
downloadopenttd-31d283c6c88464837dd57b78f75394367c4d40f7.tar.xz
(svn r13714) -Fix: remove the unique_id from the message that a client has joined as it is only exposes the unique_id more than needed. Patch by dih.
Diffstat (limited to 'src/network/network_client.cpp')
-rw-r--r--src/network/network_client.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/network/network_client.cpp b/src/network/network_client.cpp
index cd2df7f23..0b52e0169 100644
--- a/src/network/network_client.cpp
+++ b/src/network/network_client.cpp
@@ -400,10 +400,8 @@ DEF_CLIENT_RECEIVE_COMMAND(PACKET_SERVER_CLIENT_INFO)
uint16 index = p->Recv_uint16();
PlayerID playas = (Owner)p->Recv_uint8();
char name[NETWORK_NAME_LENGTH];
- char unique_id[NETWORK_UNIQUE_ID_LENGTH];
p->Recv_string(name, sizeof(name));
- p->Recv_string(unique_id, sizeof(unique_id));
if (MY_CLIENT->has_quit) return NETWORK_RECV_STATUS_CONN_LOST;
@@ -435,7 +433,6 @@ DEF_CLIENT_RECEIVE_COMMAND(PACKET_SERVER_CLIENT_INFO)
ci->client_playas = playas;
ttd_strlcpy(ci->client_name, name, sizeof(ci->client_name));
- ttd_strlcpy(ci->unique_id, unique_id, sizeof(ci->unique_id));
InvalidateWindow(WC_CLIENT_LIST, 0);