From 1f40b4ba9a6da27fa3a8c41ce20e68a3101a4696 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Fri, 2 Mar 2001 19:19:31 +0000 Subject: Don't forget to unref the SASL object. 2001-03-02 Jeffrey Stedfast * providers/imap/camel-imap-store.c (try_auth): Don't forget to unref the SASL object. * providers/smtp/camel-smtp-transport.c (query_auth_types): Implemented. (smtp_auth): Implemented. (smtp_helo): Don't bother parsing the authtypes if we already have them. (smtp_connect): call smtp_auth() here if we found any authtypes. (smtp_disconnect): Updated as I now use a hash table for the supported authtypes rather than a linked list. (esmtp_get_authtypes): modify to use a hash table instead of a linked list and also use isspace() rather than == ' '. svn path=/trunk/; revision=8525 --- camel/providers/smtp/camel-smtp-transport.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'camel/providers/smtp/camel-smtp-transport.h') diff --git a/camel/providers/smtp/camel-smtp-transport.h b/camel/providers/smtp/camel-smtp-transport.h index 7d647e6544..b15f0319df 100644 --- a/camel/providers/smtp/camel-smtp-transport.h +++ b/camel/providers/smtp/camel-smtp-transport.h @@ -57,7 +57,7 @@ typedef struct { struct sockaddr_in localaddr; - GList *esmtp_supported_authtypes; + GHashTable *authtypes; } CamelSmtpTransport; -- cgit