]> sjero.net Git - linphone/commitdiff
Handle LinphoneIceStateFailed.
authorGhislain MARY <ghislain.mary@belledonne-communications.com>
Wed, 19 Sep 2012 16:07:06 +0000 (18:07 +0200)
committerGhislain MARY <ghislain.mary@belledonne-communications.com>
Wed, 19 Sep 2012 16:07:06 +0000 (18:07 +0200)
gtk/incall_view.c

index 90c080be1ff962671ccc54c7ace79743c08fa1da..9798a718db880ed25cd03972acdcbb7111a0eba3 100644 (file)
@@ -215,7 +215,9 @@ static void show_used_codecs(GtkWidget *callstats, LinphoneCall *call){
 static const char *ice_state_to_string(LinphoneIceState ice_state){
        switch(ice_state){
                case LinphoneIceStateNotActivated:
-                       return _("Ice not activated");
+                       return _("ICE not activated");
+               case LinphoneIceStateFailed:
+                       return _("ICE failed");
                case LinphoneIceStateInProgress:
                        return _("ICE in progress");
                case LinphoneIceStateReflexiveConnection: