[chocolate-doom] 38/79: Fix packet send

Jonathan Dowland jmtd at moszumanska.debian.org
Mon Jan 30 15:07:23 UTC 2017


This is an automated email from the git hooks/post-receive script.

jmtd pushed a commit to annotated tag chocolate-doom-0.1.3
in repository chocolate-doom.

commit 8fdfe2014d1be3eb855afc55107df64a1cd784f8
Author: Simon Howard <fraggle at gmail.com>
Date:   Sun Jan 8 03:36:17 2006 +0000

    Fix packet send
    
    Subversion-branch: /trunk/chocolate-doom
    Subversion-revision: 266
---
 src/net_server.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/net_server.c b/src/net_server.c
index c05a384..90e3e87 100644
--- a/src/net_server.c
+++ b/src/net_server.c
@@ -1,7 +1,7 @@
 // Emacs style mode select   -*- C++ -*- 
 //-----------------------------------------------------------------------------
 //
-// $Id: net_server.c 264 2006-01-08 02:53:05Z fraggle $
+// $Id: net_server.c 266 2006-01-08 03:36:17Z fraggle $
 //
 // Copyright(C) 2005 Simon Howard
 //
@@ -21,6 +21,9 @@
 // 02111-1307, USA.
 //
 // $Log$
+// Revision 1.14  2006/01/08 03:36:17  fraggle
+// Fix packet send
+//
 // Revision 1.13  2006/01/08 02:53:05  fraggle
 // Send keepalives if the connection is not doing anything else.
 // Send all packets using a new NET_Conn_SendPacket to support this.
@@ -357,7 +360,7 @@ static void NET_SV_SendWaitingData(net_client_t *client)
     
     // send packet to client and free
 
-    NET_Conn_SendPacket(client, packet);
+    NET_Conn_SendPacket(&client->connection, packet);
     NET_FreePacket(packet);
 }
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/chocolate-doom.git



More information about the Pkg-games-commits mailing list