ICE ChangeLog,3.12,3.13 ICElibint.h,1.8,1.9 misc.c,1.6,1.7

Daniel Stone xlibs-commit@pdx.freedesktop.org
Fri Jan 28 09:04:04 PST 2005


Committed by: daniels

Update of /cvs/xlibs/ICE
In directory gabe:/tmp/cvs-serv3394

Modified Files:
	ChangeLog ICElibint.h misc.c 
Log Message:
* misc.c:
* ICElibint.h:
* include/X11/ICE/ICElib.h:
Move _IceGetPeerName into the public API as IceGetPeerName, since it is
used by libSM.


Index: ChangeLog
===================================================================
RCS file: /cvs/xlibs/ICE/ChangeLog,v
retrieving revision 3.12
retrieving revision 3.13
diff -u -d -r3.12 -r3.13
--- ChangeLog	18 Jan 2005 09:09:20 -0000	3.12
+++ ChangeLog	28 Jan 2005 17:04:02 -0000	3.13
@@ -1,3 +1,11 @@
+2005-01-29  Daniel Stone  <daniel@freedesktop.org>
+	
+	* misc.c:
+	* ICElibint.h:
+	* include/X11/ICE/ICElib.h:
+	Move _IceGetPeerName into the public API as IceGetPeerName, since it is
+	used by libSM.
+
 2005-01-18  Daniel Stone  <daniel@freedesktop.org>
 
 	* configure.ac:

Index: ICElibint.h
===================================================================
RCS file: /cvs/xlibs/ICE/ICElibint.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- ICElibint.h	29 Oct 2003 05:51:25 -0000	1.8
+++ ICElibint.h	28 Jan 2005 17:04:02 -0000	1.9
@@ -486,12 +486,6 @@
 #endif
 );
 
-extern char *_IceGetPeerName (
-#if NeedFunctionPrototypes
-    IceConn		/* iceConn */
-#endif
-);
-
 extern void _IceFreeConnection (
 #if NeedFunctionPrototypes
     IceConn		/* iceConn */

Index: misc.c
===================================================================
RCS file: /cvs/xlibs/ICE/misc.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- misc.c	29 Oct 2003 05:51:25 -0000	1.6
+++ misc.c	28 Jan 2005 17:04:02 -0000	1.7
@@ -614,10 +614,21 @@
 
 
 char *
-_IceGetPeerName (iceConn)
+IceGetPeerName (iceConn)
 
 IceConn iceConn;
 
 {
     return (_IceTransGetPeerNetworkId (iceConn->trans_conn));
 }
+
+
+/* Here for compatibility reasons. */
+char *
+_IceGetPeerName (iceConn)
+
+IceConn iceConn;
+
+{
+    return (IceGetPeerName (iceConn));
+}



More information about the xlibs-commit mailing list