From 5ba73640d40dac5a15bbbcf7647a34130f86f936 Mon Sep 17 00:00:00 2001 From: Stefan Sayer Date: Wed, 6 Feb 2008 00:40:48 +0000 Subject: [PATCH] removed doubling of 'Contact: ' (is in AmSipDialog now) git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@665 8eb893ce-cfd4-0310-b710-fb5ebe64c474 --- core/plug-in/binrpcctrl/BrpcCtrlInterface.cpp | 2 +- core/plug-in/unixsockctrl/UnixCtrlInterface.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/plug-in/binrpcctrl/BrpcCtrlInterface.cpp b/core/plug-in/binrpcctrl/BrpcCtrlInterface.cpp index f98f0f3d..a8520da4 100644 --- a/core/plug-in/binrpcctrl/BrpcCtrlInterface.cpp +++ b/core/plug-in/binrpcctrl/BrpcCtrlInterface.cpp @@ -1296,6 +1296,6 @@ string BrpcCtrlInterface::getContact(const string &displayName, localUri += hdrParams; } - return SIP_HDR_COLSP(SIP_HDR_CONTACT) + localUri + CRLF; + return localUri; } diff --git a/core/plug-in/unixsockctrl/UnixCtrlInterface.cpp b/core/plug-in/unixsockctrl/UnixCtrlInterface.cpp index 34e70fe5..5b4cc5f1 100644 --- a/core/plug-in/unixsockctrl/UnixCtrlInterface.cpp +++ b/core/plug-in/unixsockctrl/UnixCtrlInterface.cpp @@ -246,5 +246,5 @@ string UnixCtrlInterface::getContact(const string &displayName, localUri += hdrParams; } - return SIP_HDR_COLSP(SIP_HDR_CONTACT) + localUri + CRLF; + return localUri; }