diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-06-02 07:49:29 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-06-02 07:49:29 +0800 |
commit | cc44248f58d10c10f34b2a1408a627a167c3d4df (patch) | |
tree | 35bc6bfbffd18fcb0db4929cea0288cb0f8d6428 /camel/providers/pop3/camel-pop3-engine.c | |
parent | f0a3dbe3e721063144d78ddf5bbaba1a978a2191 (diff) | |
download | gsoc2013-evolution-cc44248f58d10c10f34b2a1408a627a167c3d4df.tar.gz gsoc2013-evolution-cc44248f58d10c10f34b2a1408a627a167c3d4df.tar.zst gsoc2013-evolution-cc44248f58d10c10f34b2a1408a627a167c3d4df.zip |
Turn off debugging.
2003-06-01 Jeffrey Stedfast <fejj@ximian.com>
* broken-date-parser.c (d): Turn off debugging.
* providers/pop3/camel-pop3-engine.c (get_capabilities): Move the
code that prepends the 'password' authtype to the auth list so
that we don't add it again when regetting the capabilities.
svn path=/trunk/; revision=21360
Diffstat (limited to 'camel/providers/pop3/camel-pop3-engine.c')
-rw-r--r-- | camel/providers/pop3/camel-pop3-engine.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/camel/providers/pop3/camel-pop3-engine.c b/camel/providers/pop3/camel-pop3-engine.c index 6ea3704667..762212388e 100644 --- a/camel/providers/pop3/camel-pop3-engine.c +++ b/camel/providers/pop3/camel-pop3-engine.c @@ -209,10 +209,10 @@ get_capabilities(CamelPOP3Engine *pe, int read_greeting) pe->capa = CAMEL_POP3_CAP_APOP; pe->auth = g_list_append(pe->auth, &camel_pop3_apop_authtype); } + + pe->auth = g_list_prepend(pe->auth, &camel_pop3_password_authtype); } - - pe->auth = g_list_prepend(pe->auth, &camel_pop3_password_authtype); - + pc = camel_pop3_engine_command_new(pe, CAMEL_POP3_COMMAND_MULTI, cmd_capa, NULL, "CAPA\r\n"); while (camel_pop3_engine_iterate(pe, pc) > 0) ; |