]> sjero.net Git - linphone/commitdiff
More general ui error message on 200Ok SDP error.
authorGuillaume Beraudo <guillaume.beraudo@belledonne-communications.com>
Tue, 3 Jan 2012 10:11:42 +0000 (11:11 +0100)
committerGuillaume Beraudo <guillaume.beraudo@belledonne-communications.com>
Tue, 3 Jan 2012 10:11:42 +0000 (11:11 +0100)
"No codec intersection" is only a case of error.
Other cases include bad srtp answer (AVP instead of SAVP).

coreapi/callbacks.c

index 7b79a78d6dde39bc343607cad74905829ae3aa06..84092e69fdb560aa10490622cb9f0d88c8da18a8 100644 (file)
@@ -374,7 +374,7 @@ static void call_accepted(SalOp *op){
        }else{
                /*send a bye*/
                ms_error("Incompatible SDP offer received in 200Ok, need to abort the call");
-               linphone_core_abort_call(lc,call,"No codec intersection");
+               linphone_core_abort_call(lc,call,_("Incompatible, check codecs..."));
        }
 }