Mercurial > pidgin
changeset 24200:e9094d59a4c2
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.
author | Ethan Blanton <elb@pidgin.im> |
---|---|
date | Mon, 29 Sep 2008 00:59:53 +0000 |
parents | aa8ddc4e12af |
children | 975efd786eb3 |
files | pidgin/gtkaccount.c |
diffstat | 1 files changed, 0 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- 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);