Revision: 40728
          http://brlcad.svn.sourceforge.net/brlcad/?rev=40728&view=rev
Author:   brlcad
Date:     2010-09-28 11:44:47 +0000 (Tue, 28 Sep 2010)

Log Message:
-----------
data is merely sunk so no need to leverage the new user_data field.  init to 
null.

Modified Paths:
--------------
    brlcad/trunk/src/libpkg/tpkg.c

Modified: brlcad/trunk/src/libpkg/tpkg.c
===================================================================
--- brlcad/trunk/src/libpkg/tpkg.c      2010-09-28 11:29:34 UTC (rev 40727)
+++ brlcad/trunk/src/libpkg/tpkg.c      2010-09-28 11:44:47 UTC (rev 40728)
@@ -144,10 +144,10 @@
 
     /** our server callbacks for each message type */
     struct pkg_switch callbacks[] = {
-       {MSG_HELO, server_helo, "HELO"},
-       {MSG_DATA, server_data, "DATA"},
-       {MSG_CIAO, server_ciao, "CIAO"},
-       {0, 0, (char *)0}
+       {MSG_HELO, server_helo, "HELO", NULL},
+       {MSG_DATA, server_data, "DATA", NULL},
+       {MSG_CIAO, server_ciao, "CIAO", NULL},
+       {0, 0, (char *)0, (void*)0}
     };
 
     validate_port(port);


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to