X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fmhmisc.c;h=fddd552291ebecc8c4e7817072998470354cf738;hp=75ac158373b0e50121dd8f67d1bb9166f18cee48;hb=0aef47ae5c03e1d9e3f225efe5ae362e7cf5ee35;hpb=1691e80890e5d8ba258c51c214a3e91880e1db2b diff --git a/uip/mhmisc.c b/uip/mhmisc.c index 75ac158..fddd552 100644 --- a/uip/mhmisc.c +++ b/uip/mhmisc.c @@ -3,14 +3,18 @@ * mhparse.c -- misc routines to process MIME messages * * $Id$ + * + * This code is Copyright (c) 2002, by the authors of nmh. See the + * COPYRIGHT file in the root directory of the nmh distribution for + * complete copyright information. */ #include #include #include #include +#include -extern int errno; extern int debugsw; /* @@ -42,13 +46,17 @@ int part_ok (CT ct, int sP) { char **ap; + int len; if (npart == 0 || (ct->c_type == CT_MULTIPART && (sP || ct->c_subtype))) return 1; - for (ap = parts; *ap; ap++) - if (!strcmp (*ap, ct->c_partno)) - return 1; + for (ap = parts; *ap; ap++) { + len = strlen(*ap); + if (!strncmp (*ap, ct->c_partno, len) && + (!ct->c_partno[len] || ct->c_partno[len] == '.' )) + return 1; + } return 0; } @@ -66,7 +74,7 @@ type_ok (CT ct, int sP) snprintf (buffer, sizeof(buffer), "%s/%s", ci->ci_type, ci->ci_subtype); for (ap = types; *ap; ap++) - if (!strcasecmp (*ap, ci->ci_type) || !strcasecmp (*ap, buffer)) + if (!mh_strcasecmp (*ap, ci->ci_type) || !mh_strcasecmp (*ap, buffer)) return 1; return 0; @@ -94,7 +102,7 @@ make_intermediates (char *file) { char *cp; - for (cp = file + 1; cp = strchr(cp, '/'); cp++) { + for (cp = file + 1; (cp = strchr(cp, '/')); cp++) { struct stat st; *cp = '\0';