diff options
author | Kjartan Maraas <kmaraas@src.gnome.org> | 2006-01-28 00:34:03 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2006-01-28 00:34:03 +0800 |
commit | 45f799eb8632142a31d1dbf3572c2672bb36c747 (patch) | |
tree | 852523494c449077b4e59e0812bd7277d6892a4f /plugins/exchange-operations/exchange-account-setup.c | |
parent | 6a557ef8fd8fb37af345b0f092f8419572bee1dd (diff) | |
download | gsoc2013-evolution-45f799eb8632142a31d1dbf3572c2672bb36c747.tar.gz gsoc2013-evolution-45f799eb8632142a31d1dbf3572c2672bb36c747.tar.zst gsoc2013-evolution-45f799eb8632142a31d1dbf3572c2672bb36c747.zip |
Make this place a bit more quiet
svn path=/trunk/; revision=31328
Diffstat (limited to 'plugins/exchange-operations/exchange-account-setup.c')
-rw-r--r-- | plugins/exchange-operations/exchange-account-setup.c | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/plugins/exchange-operations/exchange-account-setup.c b/plugins/exchange-operations/exchange-account-setup.c index c61174fd42..edb73c87ab 100644 --- a/plugins/exchange-operations/exchange-account-setup.c +++ b/plugins/exchange-operations/exchange-account-setup.c @@ -192,8 +192,10 @@ org_gnome_exchange_settings(EPlugin *epl, EConfigHookItemFactoryData *data) GtkFrame *frm_auth; GtkVBox *vbox_auth; GtkTable *tbl_auth; +#ifdef HAVE_KRB5 GtkLabel *lbl_chpass; GtkButton *btn_chpass; +#endif GtkLabel *lbl_dass; GtkButton *btn_dass; @@ -371,27 +373,15 @@ org_gnome_exchange_settings(EPlugin *epl, EConfigHookItemFactoryData *data) static void print_error (const char *owa_url, E2kAutoconfigResult result) { - char *old, *new; - switch (result) { case E2K_AUTOCONFIG_CANT_CONNECT: - if (!strncmp (owa_url, "http:", 5)) { - old = "http"; - new = "https"; - } else { - old = "https"; - new = "http"; - } - e_error_run (NULL, ERROR_DOMAIN ":account-connect-error", "", NULL); - break; case E2K_AUTOCONFIG_CANT_RESOLVE: - e_error_run (NULL, ERROR_DOMAIN ":account-resolve-error", "", NULL); - break; + break; case E2K_AUTOCONFIG_AUTH_ERROR: case E2K_AUTOCONFIG_AUTH_ERROR_TRY_NTLM: |