From c9c7b95ae83104f75d432791094d805ab70aaf90 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Sun, 7 Feb 2010 05:15:53 +0000 Subject: [PATCH] (trunk gtk) #2013 "unable to connect to tracker via authenticated HTTP proxy server" -- fixed in GTK+ for 1.90 --- gtk/tr-prefs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/tr-prefs.c b/gtk/tr-prefs.c index 178cfe7bb..2219922a7 100644 --- a/gtk/tr-prefs.c +++ b/gtk/tr-prefs.c @@ -1023,7 +1023,7 @@ trackerPage( GObject * core ) page->proxy_auth_widgets = g_slist_append( page->proxy_auth_widgets, w ); s = _( "Pass_word:" ); - w = new_entry( TR_PREFS_KEY_RPC_PASSWORD, core ); + w = new_entry( TR_PREFS_KEY_PROXY_PASSWORD, core ); gtk_entry_set_visibility( GTK_ENTRY( w ), FALSE ); page->proxy_auth_widgets = g_slist_append( page->proxy_auth_widgets, w ); w = hig_workarea_add_row( t, &row, s, w, NULL );