ekiga r6335 - in trunk: . src/endpoints



Author: dsandras
Date: Thu May 29 21:21:13 2008
New Revision: 6335
URL: http://svn.gnome.org/viewvc/ekiga?rev=6335&view=rev

Log:
Do not use the CallID as key but the From field of the PDU.


Modified:
   trunk/ChangeLog
   trunk/src/endpoints/sip.cpp

Modified: trunk/src/endpoints/sip.cpp
==============================================================================
--- trunk/src/endpoints/sip.cpp	(original)
+++ trunk/src/endpoints/sip.cpp	Thu May 29 21:21:13 2008
@@ -818,9 +818,9 @@
 
   PWaitAndSignal m(msgDataMutex);
   last = msgData.GetAt (SIPURL (from).AsString ());
-  if (!last || *last != pdu.GetMIME ().GetCallID ()) {
+  if (!last || *last != pdu.GetMIME ().GetFrom ()) {
 
-    val = new PString (pdu.GetMIME ().GetCallID ());
+    val = new PString (pdu.GetMIME ().GetFrom ());
     msgData.SetAt (SIPURL (from).AsString (), val);
 
     SIPURL uri = from;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]