aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mail/ChangeLog3
-rw-r--r--mail/mail-account-editor.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 14fd5575cd..e977228b01 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,5 +1,8 @@
2001-03-29 Dan Winship <danw@ximian.com>
+ * mail-account-editor.c (switch_page): Fix this so the "Receiving
+ Options" page gets filled in again.
+
* mail-send-recv.c (receive_get_folder): Doh! This was storing
"struct _folder_info"s in the cache and then trying to read them
back as CamelFolders. Fixicate. Fixes the "crash with 2 POP
diff --git a/mail/mail-account-editor.c b/mail/mail-account-editor.c
index 279304d956..7656732f75 100644
--- a/mail/mail-account-editor.c
+++ b/mail/mail-account-editor.c
@@ -145,7 +145,7 @@ switch_page (GtkNotebook *notebook, GtkNotebookPage *page,
return;
if (gsrc && gsrc->provider && source->url &&
- !strncmp (gsrc->provider->protocol, source->url, strlen (source->url)))
+ !strncmp (gsrc->provider->protocol, source->url, strlen (gsrc->provider->protocol)))
url = source->url;
mail_account_gui_build_extra_conf (editor->gui, url);