X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fmhmisc.c;h=a3da759fcd7804408402bf2c82dcff6fe248c71c;hb=d72dc17f4164fd8a3e3c56a74a66a21138d82814;hp=80ebcbb67165dc91a890f51351b837e12f0c88d8;hpb=794dab6aa5027ffaf024506140c258f6a0a9322d;p=mmh diff --git a/uip/mhmisc.c b/uip/mhmisc.c index 80ebcbb..a3da759 100644 --- a/uip/mhmisc.c +++ b/uip/mhmisc.c @@ -3,6 +3,10 @@ * 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 @@ -10,7 +14,6 @@ #include #include -extern int errno; extern int debugsw; /* @@ -42,13 +45,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; }