[Opensrf-commits] r1566 - branches/rel_1_0/src/jserver

svn at svn.open-ils.org svn at svn.open-ils.org
Tue Dec 23 11:21:22 EST 2008


Author: dbs
Date: 2008-12-23 11:21:20 -0500 (Tue, 23 Dec 2008)
New Revision: 1566

Modified:
   branches/rel_1_0/src/jserver/osrf_chat.c
Log:
Merge r1511 from trunk (workaround for newer glibc systems - explicit HOST_NAME_MAX)
Thanks for the reminder from Warren Layton!


Modified: branches/rel_1_0/src/jserver/osrf_chat.c
===================================================================
--- branches/rel_1_0/src/jserver/osrf_chat.c	2008-12-22 20:43:56 UTC (rev 1565)
+++ branches/rel_1_0/src/jserver/osrf_chat.c	2008-12-23 16:21:20 UTC (rev 1566)
@@ -18,6 +18,10 @@
 #include <stdio.h>
 #include <time.h>
 
+#ifndef HOST_NAME_MAX
+#define HOST_NAME_MAX 256
+#endif
+
 static int osrfChatXMLErrorOcurred = 0;
 
 /* This is used by code in osrfChatPushData, but that code is



More information about the opensrf-commits mailing list