diff options
author | Andrey Nazarov <skuller@skuller.net> | 2007-12-21 18:13:35 +0000 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2007-12-21 18:13:35 +0000 |
commit | 994e19fb290ad41e625e69d98af125a02afe417a (patch) | |
tree | 659224e41eb02952dd89ba733cdf012cbf4bbf03 /source/sv_init.c | |
parent | 71a361a226e0a15341b9a719c72eda1ca3f80f1c (diff) |
Actually implemented sv_http_minclients.
Avoid `Q_strncpyz: overflow' messages when loading CM surfaces.
Updated server README.
Diffstat (limited to 'source/sv_init.c')
-rw-r--r-- | source/sv_init.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/sv_init.c b/source/sv_init.c index fb996c5..f2c9d93 100644 --- a/source/sv_init.c +++ b/source/sv_init.c @@ -279,7 +279,8 @@ void SV_InitGame( qboolean ismvd ){ List_Init( &svs.clients ); List_Init( &svs.mvd.clients ); - List_Init( &svs.tcpClients ); + List_Init( &svs.tcp_client_list ); + List_Init( &svs.tcp_client_pool ); for( i = 0; i < sv_maxclients->integer; i++ ) { client = svs.clientpool + i; |