diff options
-rw-r--r-- | camel/ChangeLog | 5 | ||||
-rw-r--r-- | camel/providers/smtp/camel-smtp-transport.c | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index e7953e65a6..8249df97f2 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,8 @@ +2000-05-10 Jeffrey Stedfast <fejj@stampede.org> + + * providers/smtp/camel-smtp-transport.c: (camel_smtp_transport_class_init): + Added initialization for service_class + 2000-05-10 Dan Winship <danw@helixcode.com> * camel-multipart.c (write_to_stream): fix a stupid typo. Thank diff --git a/camel/providers/smtp/camel-smtp-transport.c b/camel/providers/smtp/camel-smtp-transport.c index a240ae95ec..57d14d7fe3 100644 --- a/camel/providers/smtp/camel-smtp-transport.c +++ b/camel/providers/smtp/camel-smtp-transport.c @@ -34,7 +34,8 @@ #include <stdlib.h> #include <string.h> #include <unistd.h> - +#undef MIN +#undef MAX #include "camel-smtp-transport.h" #include "camel-mime-message.h" #include "camel-stream-buffer.h" @@ -77,6 +78,8 @@ camel_smtp_transport_class_init (CamelSmtpTransportClass *camel_smtp_transport_c CAMEL_TRANSPORT_CLASS (camel_smtp_transport_class); CamelServiceClass *camel_service_class = CAMEL_SERVICE_CLASS (camel_smtp_transport_class); + + service_class = gtk_type_class (camel_service_get_type ()); /* virtual method overload */ camel_service_class->connect = smtp_connect; |