# HG changeset patch # User Ethan Blanton # Date 1222649993 0 # Node ID e9094d59a4c20b86530ca374d8ee7d9a88293e06 # Parent aa8ddc4e12af6e012b0e6867c147674800e8c7aa Do not set the connect server for Google Talk accounts. Setting the connect server causes problems for SSL certificate verification. If this is a problem, revert. diff -r aa8ddc4e12af -r e9094d59a4c2 pidgin/gtkaccount.c --- a/pidgin/gtkaccount.c Sun Sep 28 17:19:38 2008 +0000 +++ b/pidgin/gtkaccount.c Mon Sep 29 00:59:53 2008 +0000 @@ -858,13 +858,6 @@ gtk_entry_set_invisible_char(GTK_ENTRY(entry), PIDGIN_INVISIBLE_CHAR); } - /* Google Talk default domain hackery! */ - menu = gtk_option_menu_get_menu(GTK_OPTION_MENU(dialog->protocol_menu)); - item = gtk_menu_get_active(GTK_MENU(menu)); - if (str_value == NULL && g_object_get_data(G_OBJECT(item), "fake") && - !strcmp(_("Connect server"), purple_account_option_get_text(option))) - str_value = "talk.google.com"; - if (str_value != NULL) gtk_entry_set_text(GTK_ENTRY(entry), str_value);