diff options
author | Dan Winship <danw@src.gnome.org> | 2000-06-22 06:28:30 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-06-22 06:28:30 +0800 |
commit | 36f9a550565abe5d08cccb61fe26293ea7aa30c9 (patch) | |
tree | 4fbb826b6807219b3f77f447a741a4802c0a69b1 /camel/providers | |
parent | b06d4d48ed6079103dbf74e53fc2be964cd7fac9 (diff) | |
download | gsoc2013-evolution-36f9a550565abe5d08cccb61fe26293ea7aa30c9.tar gsoc2013-evolution-36f9a550565abe5d08cccb61fe26293ea7aa30c9.tar.gz gsoc2013-evolution-36f9a550565abe5d08cccb61fe26293ea7aa30c9.tar.bz2 gsoc2013-evolution-36f9a550565abe5d08cccb61fe26293ea7aa30c9.tar.lz gsoc2013-evolution-36f9a550565abe5d08cccb61fe26293ea7aa30c9.tar.xz gsoc2013-evolution-36f9a550565abe5d08cccb61fe26293ea7aa30c9.tar.zst gsoc2013-evolution-36f9a550565abe5d08cccb61fe26293ea7aa30c9.zip |
Fix dumb bug.
* providers/pop3/camel-pop3-store.c (query_auth_types): Fix dumb
bug.
svn path=/trunk/; revision=3682
Diffstat (limited to 'camel/providers')
-rw-r--r-- | camel/providers/pop3/camel-pop3-store.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/providers/pop3/camel-pop3-store.c b/camel/providers/pop3/camel-pop3-store.c index ea4db42097..ba2b9857ac 100644 --- a/camel/providers/pop3/camel-pop3-store.c +++ b/camel/providers/pop3/camel-pop3-store.c @@ -328,7 +328,7 @@ query_auth_types (CamelService *service, CamelException *ex) int saved_port; #endif - if (service->url) { + if (service->url && !service->url->empty) { passwd = connect_to_server (service, FALSE, ex); if (camel_exception_get_id (ex) != CAMEL_EXCEPTION_NONE) return NULL; |