]> git.0d.be Git - empathy.git/commitdiff
Display an error message if reason is != _REQUESTED instead of >
authorXavier Claessens <xclaesse@src.gnome.org>
Sat, 19 Jul 2008 16:59:21 +0000 (16:59 +0000)
committerXavier Claessens <xclaesse@src.gnome.org>
Sat, 19 Jul 2008 16:59:21 +0000 (16:59 +0000)
svn path=/trunk/; revision=1265

src/empathy-main-window.c

index f00139be23062d0fbe61284b1bceb6710cde0da7..dbba3b46b92c0343d32c3fe8d97792ebb5eabd32 100644 (file)
@@ -1110,10 +1110,13 @@ main_window_status_changed_cb (MissionControl           *mc,
        account = mc_account_lookup (unique_name);
 
        if (status == TP_CONNECTION_STATUS_DISCONNECTED &&
        account = mc_account_lookup (unique_name);
 
        if (status == TP_CONNECTION_STATUS_DISCONNECTED &&
-           reason > TP_CONNECTION_STATUS_REASON_REQUESTED) {
+           reason != TP_CONNECTION_STATUS_REASON_REQUESTED) {
                const gchar *message;
 
                switch (reason) {
                const gchar *message;
 
                switch (reason) {
+               case TP_CONNECTION_STATUS_REASON_NONE_SPECIFIED:
+                       message = _("No error specified");
+                       break;
                case TP_CONNECTION_STATUS_REASON_NETWORK_ERROR:
                        message = _("Network error");
                        break;
                case TP_CONNECTION_STATUS_REASON_NETWORK_ERROR:
                        message = _("Network error");
                        break;