X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=imap%2Fmessage.c;h=949f5d9ba702b388cdb86d3bee9718d6769f7d2c;hb=9218fd9d7e2a7976b34683c60cb94f7fda42141a;hp=bc75ed543cec8e6614260ed8aaa39189558ed493;hpb=75291cb065ec25499a125665cba1123ee4c64abf;p=apps%2Fmadmutt.git diff --git a/imap/message.c b/imap/message.c index bc75ed5..949f5d9 100644 --- a/imap/message.c +++ b/imap/message.c @@ -48,7 +48,7 @@ static int msg_has_flag (LIST * flag_list, const char *flag); static int msg_parse_fetch (IMAP_HEADER * h, char *s); static char *msg_parse_flags (IMAP_HEADER * h, char *s); -#if USE_HCACHE +#ifdef USE_HCACHE static int msg_fetch_header_fetch (CONTEXT * ctx, IMAP_HEADER * h, char *buf, FILE * fp); static size_t imap_hcache_keylen (const char *fn); @@ -73,7 +73,7 @@ int imap_read_headers (IMAP_DATA * idata, int msgbegin, int msgend) const char *want_headers = "DATE FROM SUBJECT TO CC MESSAGE-ID REFERENCES CONTENT-TYPE CONTENT-DESCRIPTION IN-REPLY-TO REPLY-TO LINES LIST-POST X-LABEL"; -#if USE_HCACHE +#ifdef USE_HCACHE void *hc = NULL; unsigned long *uid_validity = NULL; char uid_buf[64]; @@ -116,7 +116,7 @@ int imap_read_headers (IMAP_DATA * idata, int msgbegin, int msgend) idata->reopen &= ~IMAP_NEWMAIL_PENDING; idata->newMailCount = 0; -#if USE_HCACHE +#ifdef USE_HCACHE if ((hc = mutt_hcache_open (HeaderCache, ctx->path))) { snprintf (buf, sizeof (buf), @@ -270,7 +270,7 @@ int imap_read_headers (IMAP_DATA * idata, int msgbegin, int msgend) /* content built as a side-effect of mutt_read_rfc822_header */ ctx->hdrs[msgno]->content->length = h.content_length; -#if USE_HCACHE +#ifdef USE_HCACHE sprintf (uid_buf, "/%u", h.data->uid); mutt_hcache_store (hc, uid_buf, ctx->hdrs[msgno], idata->uid_validity, &imap_hcache_keylen); @@ -284,7 +284,7 @@ int imap_read_headers (IMAP_DATA * idata, int msgbegin, int msgend) if ((mfhrc < -1) || ((rc != IMAP_CMD_CONTINUE) && (rc != IMAP_CMD_OK))) { imap_free_header_data ((void *)&h.data); fclose (fp); -#if USE_HCACHE +#ifdef USE_HCACHE mutt_hcache_close (hc); #endif /* USE_HCACHE */ return -1; @@ -300,7 +300,7 @@ int imap_read_headers (IMAP_DATA * idata, int msgbegin, int msgend) } } -#if USE_HCACHE +#ifdef USE_HCACHE mutt_hcache_close (hc); #endif /* USE_HCACHE */ @@ -890,7 +890,7 @@ static int msg_fetch_header (CONTEXT * ctx, IMAP_HEADER * h, char *buf, return rc; } -#if USE_HCACHE +#ifdef USE_HCACHE static size_t imap_hcache_keylen (const char *fn) { return str_len (fn);