]> git.0d.be Git - empathy.git/commitdiff
change 'disconnect' label to 'finally'
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Thu, 3 Jun 2010 10:26:55 +0000 (12:26 +0200)
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Thu, 3 Jun 2010 12:52:25 +0000 (14:52 +0200)
src/empathy-main-window.c

index 28837c280d3cb3c9311f57be071ecc8911731a81..837c52b04e4dcbec26091b60f9aa628aca273836 100644 (file)
@@ -914,7 +914,7 @@ account_status_changed_cb (TpAccount  *account,
        switch (new_status) {
                case TP_CONNECTION_STATUS_DISCONNECTED:
                        /* Don't wait any longer */
-                       goto disconnect;
+                       goto finally;
                        break;
 
                case TP_CONNECTION_STATUS_CONNECTING:
@@ -928,7 +928,7 @@ account_status_changed_cb (TpAccount  *account,
 
        join_chatroom (ctx->chatroom, ctx->timestamp);
 
-disconnect:
+finally:
        g_source_remove (ctx->timeout);
        g_signal_handler_disconnect (account, ctx->sig_id);
 }