[ekiga] Update to recent opal changes to remote party address shown in URL bar



commit 28f3e3142b3e5fb941a7699cebfcb4ea56ee175e
Author: Eugen Dedu <Eugen Dedu pu-pm univ-fcomte fr>
Date:   Mon Nov 22 10:44:25 2010 +0100

    Update to recent opal changes to remote party address shown in URL bar
    
    The change was introduced by commit 24705 in opal.

 lib/engine/components/opal/opal-call.cpp |    7 ++-----
 1 files changed, 2 insertions(+), 5 deletions(-)
---
diff --git a/lib/engine/components/opal/opal-call.cpp b/lib/engine/components/opal/opal-call.cpp
index 985e98a..9699bf7 100644
--- a/lib/engine/components/opal/opal-call.cpp
+++ b/lib/engine/components/opal/opal-call.cpp
@@ -298,13 +298,10 @@ Opal::Call::parse_info (OpalConnection & connection)
 
   if (!PIsDescendant(&connection, OpalPCSSConnection)) {
 
-    remote_uri = (const char *) connection.GetRemotePartyCallbackURL ();
+    remote_uri = (const char *) connection.GetRemotePartyAddress ();
 
     l_party_name = (const char *) connection.GetLocalPartyName ();
-    if (connection.GetRemotePartyName () == connection.GetRemotePartyAddress ())
-      r_party_name = remote_uri;
-    else
-      r_party_name = (const char *) connection.GetRemotePartyName ();
+    r_party_name = (const char *) connection.GetRemotePartyName ();
     app = (const char *) connection.GetRemoteProductInfo ().AsString ();
     start_time = connection.GetConnectionStartTime ();
     if (!start_time.IsValid ())



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