From 04b9ec51d45f2efb3b8118eef99c7592ba269792 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Tue, 26 Aug 2003 18:16:51 +0000 Subject: temporarily reverting my camel namespace patches until after we merge in some of the other branches svn path=/trunk/; revision=22373 --- camel/camel-movemail.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'camel/camel-movemail.c') diff --git a/camel/camel-movemail.c b/camel/camel-movemail.c index 70807195e5..b5a287cfa6 100644 --- a/camel/camel-movemail.c +++ b/camel/camel-movemail.c @@ -402,7 +402,7 @@ camel_movemail_copy_filter(int fromfd, int tofd, off_t start, size_t bytes, Came /* write the headers back out again, but not he Content-Length header, because we dont want to maintain it! */ static int -solaris_header_write(int fd, struct _camel_header_raw *header) +solaris_header_write(int fd, struct _header_raw *header) { struct iovec iv[4]; int outlen = 0, len; @@ -473,10 +473,10 @@ camel_movemail_solaris (int oldsfd, int dfd, CamelException *ex) ffrom = camel_mime_filter_from_new(); - while (camel_mime_parser_step(mp, &buffer, &len) == CAMEL_MIME_PARSER_STATE_FROM) { + while (camel_mime_parser_step(mp, &buffer, &len) == HSCAN_FROM) { g_assert(camel_mime_parser_from_line(mp)); from = g_strdup(camel_mime_parser_from_line(mp)); - if (camel_mime_parser_step(mp, &buffer, &len) != CAMEL_MIME_PARSER_STATE_FROM_END) { + if (camel_mime_parser_step(mp, &buffer, &len) != HSCAN_FROM_END) { const char *cl; int length; int start, body; -- cgit