X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=parse.c;h=5b88380b4514bfd0dec4b9ca5555fce075052048;hp=d623d44ecc09599de504f8941e61cedab0088bb7;hb=92f33a4a968296528f1d5f151ff700210840cb2c;hpb=ef7b80006ebb47372d69c64e8b2b2f0764333d55 diff --git a/parse.c b/parse.c index d623d44..5b88380 100644 --- a/parse.c +++ b/parse.c @@ -237,7 +237,7 @@ static PARAMETER *parse_parameters (const char *s) new->value = str_dup (buffer); - debug_print (2, ("`%s' = `%s'\n", new->attribute ? new->attribute : "", + debug_print (2, ("`%s' = `%s'\n", new->attribute ? new->attribute : "", new->value ? new->value : "")); /* Add this parameter to the list */ @@ -794,7 +794,7 @@ time_t mutt_parse_date (const char *s, HEADER * h) char scratch[SHORT_STRING]; /* Don't modify our argument. Fixed-size buffer is ok here since - * the date format imposes a natural limit. + * the date format imposes a natural limit. */ strfcpy (scratch, s, sizeof (scratch)); @@ -1070,9 +1070,9 @@ int mutt_parse_rfc822_line (ENVELOPE * e, HEADER * hdr, char *line, char *p, if (hdr) { hdr->lines = atoi (p); - /* + /* * HACK - mutt has, for a very short time, produced negative - * Lines header values. Ignore them. + * Lines header values. Ignore them. */ if (hdr->lines < 0) hdr->lines = 0; @@ -1289,14 +1289,14 @@ done: * f stream to read from * * hdr header structure of current message (optional). - * + * * user_hdrs If set, store user headers. Used for recall-message and * postpone modes. - * + * * weed If this parameter is set and the user has activated the * $weed option, honor the header weed list for user headers. * Used for recall-message. - * + * * Returns: newly allocated envelope structure. You should free it by * mutt_free_envelope() when envelope stay unneeded. */ @@ -1440,13 +1440,13 @@ ADDRESS *mutt_parse_adrlist (ADDRESS * p, const char *s) int count_body_parts_check(LIST **checklist, BODY *b, int dflt) { LIST *type; ATTACH_MATCH *a; - + /* If list is null, use default behavior. */ if (! *checklist) { /*return dflt;*/ return 0; } - + for (type = *checklist; type; type = type->next) { a = (ATTACH_MATCH *)type->data; debug_print(5, ("cbpc: %s %d/%s ?? %s/%s [%d]... ", @@ -1466,32 +1466,32 @@ int count_body_parts_check(LIST **checklist, BODY *b, int dflt) { #define AT_COUNT(why) { shallcount = 1; } #define AT_NOCOUNT(why) { shallcount = 0; } -int count_body_parts (BODY *body, int flags) { +int count_body_parts (BODY *body, int flags) { int count = 0; int shallcount, shallrecurse; BODY *bp; - + if (body == NULL) return 0; - + for (bp = body; bp != NULL; bp = bp->next) { /* Initial disposition is to count and not to recurse this part. */ AT_COUNT("default"); shallrecurse = 0; - + debug_print(5, ("bp: desc=\"%s\"; fn=\"%s\", type=\"%d/%s\"\n", bp->description ? bp->description : ("none"), bp->filename ? bp->filename : bp->d_filename ? bp->d_filename : "(none)", bp->type, bp->subtype ? bp->subtype : "*")); - + if (bp->type == TYPEMESSAGE) { shallrecurse = 1; - + /* If it's an external body pointer, don't recurse it. */ if (!ascii_strcasecmp (bp->subtype, "external-body")) shallrecurse = 0; - + /* Don't count containers if they're top-level. */ if (flags & M_PARTS_TOPLEVEL) AT_NOCOUNT("top-level message/*"); @@ -1500,19 +1500,19 @@ int count_body_parts (BODY *body, int flags) { shallrecurse = 1; if (!str_casecmp(bp->subtype, "alternative")) shallrecurse = 0; - + /* Don't count containers if they're top-level. */ if (flags & M_PARTS_TOPLEVEL) AT_NOCOUNT("top-level multipart"); } - + if (bp->disposition == DISPINLINE && bp->type != TYPEMULTIPART && bp->type != TYPEMESSAGE && bp == body) AT_NOCOUNT("ignore fundamental inlines"); - + /* If this body isn't scheduled for enumeration already, don't bother * profiling it further. */ - + if (shallcount) { /* Turn off shallcount if message type is not in ok list, * or if it is in except list. Check is done separately for @@ -1531,21 +1531,21 @@ int count_body_parts (BODY *body, int flags) { AT_NOCOUNT("excluded"); } } - + if (shallcount) count++; bp->attach_qualifies = shallcount ? 1 : 0; - - debug_print(5, ("cbp: %08x shallcount = %d\n", (unsigned int)bp, shallcount)); - + + debug_print(5, ("cbp: %p shallcount = %d\n", bp, shallcount)); + if (shallrecurse) { - debug_print(5, ("cbp: %08x pre count = %d\n", (unsigned int)bp, count)); + debug_print(5, ("cbp: %p pre count = %d\n", bp, count)); bp->attach_count = count_body_parts(bp->parts, flags & ~M_PARTS_TOPLEVEL); count += bp->attach_count; - debug_print(5, ("cbp: %08x post count = %d\n", (unsigned int)bp, count)); + debug_print(5, ("cbp: %p post count = %d\n", bp, count)); } } - + debug_print(5, ("bp: return %d\n", count < 0 ? 0 : count)); return count < 0 ? 0 : count; } @@ -1555,12 +1555,12 @@ int mutt_count_body_parts (HEADER *hdr, int flags) { return (0); if (hdr->attach_valid && !(flags & M_PARTS_RECOUNT)) return hdr->attach_total; - + if (AttachAllow || AttachExclude || InlineAllow || InlineExclude) hdr->attach_total = count_body_parts(hdr->content, flags | M_PARTS_TOPLEVEL); else hdr->attach_total = 0; - + hdr->attach_valid = 1; return hdr->attach_total; }