From: divverent Date: Sun, 21 Oct 2007 13:48:50 +0000 (+0000) Subject: fixed missing newline at end of some stufftext (breaking curl downloads a little) X-Git-Tag: xonotic-v0.1.0preview~2832 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=2db4203b4fe9e26954088df9c27e1433ebc3345c;p=xonotic%2Fdarkplaces.git fixed missing newline at end of some stufftext (breaking curl downloads a little) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7649 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/sv_main.c b/sv_main.c index 4f0dce0b..d4e7485c 100644 --- a/sv_main.c +++ b/sv_main.c @@ -753,7 +753,7 @@ void SV_SendServerinfo (client_t *client) if (sv_allowdownloads.integer) { MSG_WriteByte (&client->netconnection->message, svc_stufftext); - MSG_WriteString (&client->netconnection->message, "cl_serverextension_download 1"); + MSG_WriteString (&client->netconnection->message, "cl_serverextension_download 1\n"); } // send at this time so it's guaranteed to get executed at the right time