summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stone <daniel@fooishbar.org>2005-01-28 19:15:39 +0000
committerDaniel Stone <daniel@fooishbar.org>2005-01-28 19:15:39 +0000
commitc9f8774f04b398ac963b23ce1d5a12e703977064 (patch)
tree1964e06ae5fac56e67b9c444a7a3fe75a33a9fb1
parent52435fb9fdaecfdc9b11d54e74388520dacc4b0b (diff)
downloadxorg-lib-libSM-c9f8774f04b398ac963b23ce1d5a12e703977064.tar.gz
Move _IceGetPeerName into the ICE public API as IceGetPeerName; bump ICEXORG-6_8_99_1
soversion to 6.4 accordingly. Change SM's use to the public version. The old version will be retained for compatibility.
-rw-r--r--src/sm_manager.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/sm_manager.c b/src/sm_manager.c
index 23e83cb..a88fe0d 100644
--- a/src/sm_manager.c
+++ b/src/sm_manager.c
@@ -162,16 +162,13 @@ char *errorStringRet;
-/* Using private API from libICE. */
-extern char *_IceGetPeerName (IceConn /* iceConn */);
-
char *
SmsClientHostName (smsConn)
SmsConn smsConn;
{
- return (_IceGetPeerName (smsConn->iceConn));
+ return (IceGetPeerName (smsConn->iceConn));
}