From: Ghislain MARY Date: Wed, 19 Sep 2012 16:07:06 +0000 (+0200) Subject: Handle LinphoneIceStateFailed. X-Git-Url: http://sjero.net/git/?p=linphone;a=commitdiff_plain;h=e43709fd123d87c75cd7d4e8ae1c5cbfcdbbb9fd Handle LinphoneIceStateFailed. --- diff --git a/gtk/incall_view.c b/gtk/incall_view.c index 90c080be..9798a718 100644 --- a/gtk/incall_view.c +++ b/gtk/incall_view.c @@ -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: