X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=pop%2Fpop.c;h=ab5b7399336b316235594f9d0f6b3bd9e20426b0;hb=7048f7d738dac900f2e76622f3d92b62f99b69a7;hp=d737521dec9ce6e0ddfc728e599b7ee9c1b0aef3;hpb=9a1805afc94b21d8766e6e67ef57f92aaf966e84;p=apps%2Fmadmutt.git diff --git a/pop/pop.c b/pop/pop.c index d737521..ab5b739 100644 --- a/pop/pop.c +++ b/pop/pop.c @@ -19,6 +19,7 @@ #include "lib/mem.h" #include "lib/str.h" #include "lib/intl.h" +#include "lib/debug.h" #include #include @@ -48,7 +49,6 @@ static pop_query_status pop_read_header (POP_DATA * pop_data, HEADER * h) FILE *f; int index; pop_query_status ret; - cmd_status status; long length; char buf[LONG_STRING]; char tempfile[_POSIX_PATH_MAX]; @@ -71,13 +71,13 @@ static pop_query_status pop_read_header (POP_DATA * pop_data, HEADER * h) if (ret == PQ_OK) { pop_data->cmd_top = CMD_AVAILABLE; - dprint (1, (debugfile, "pop_read_header: set TOP capability\n")); + debug_print (1, ("set TOP capability\n")); } if (ret == PQ_ERR) { pop_data->cmd_top = CMD_NOT_AVAILABLE; - dprint (1, (debugfile, "pop_read_header: unset TOP capability\n")); + debug_print (1, ("unset TOP capability\n")); snprintf (pop_data->err_msg, sizeof (pop_data->err_msg), _("Command TOP is not supported by server.")); } @@ -124,13 +124,11 @@ static int fetch_uidl (char *line, void *data) sscanf (line, "%d %s", &index, line); for (i = 0; i < ctx->msgcount; i++) - if (!safe_strcmp (line, ctx->hdrs[i]->data)) + if (!mutt_strcmp (line, ctx->hdrs[i]->data)) break; if (i == ctx->msgcount) { - dprint (1, - (debugfile, "pop_fetch_headers: new header %d %s\n", index, - line)); + debug_print (1, ("new header %d %s\n", index, line)); if (i >= ctx->hdrmax) mx_alloc_memory (ctx); @@ -177,13 +175,13 @@ static int pop_fetch_headers (CONTEXT * ctx) if (ret == PQ_OK) { pop_data->cmd_uidl = CMD_AVAILABLE; - dprint (1, (debugfile, "pop_fetch_headers: set UIDL capability\n")); + debug_print (1, ("set UIDL capability\n")); } if (ret == PQ_ERR && pop_data->cmd_uidl == CMD_UNKNOWN) { pop_data->cmd_uidl = CMD_NOT_AVAILABLE; - dprint (1, (debugfile, "pop_fetch_headers: unset UIDL capability\n")); + debug_print (1, ("unset UIDL capability\n")); snprintf (pop_data->err_msg, sizeof (pop_data->err_msg), _("Command UIDL is not supported by server.")); } @@ -282,7 +280,7 @@ static void pop_clear_cache (POP_DATA * pop_data) if (!pop_data->clear_cache) return; - dprint (1, (debugfile, "pop_clear_cache: delete cached messages\n")); + debug_print (1, ("delete cached messages\n")); for (i = 0; i < POP_CACHE_LEN; i++) { if (pop_data->cache[i].path) { @@ -467,7 +465,7 @@ pop_query_status pop_sync_mailbox (CONTEXT * ctx, int unused, int *index_hint) } /* Check for new messages and fetch headers */ -int pop_check_mailbox (CONTEXT * ctx, int *index_hint) +int pop_check_mailbox (CONTEXT * ctx, int *index_hint, int unused) { int ret; POP_DATA *pop_data = (POP_DATA *) ctx->data;