X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fmhmisc.c;h=e8a30aceb1a5cdcfb2c051cc5413ef6cbc342fa3;hb=1888a6885e0c4049755578814462cad4259e85df;hp=9f0044ac15025fd59a08e4f71425e9e1d9dd4760;hpb=9a33ff618b5901a3af815650d4b84d39ee96e529;p=mmh diff --git a/uip/mhmisc.c b/uip/mhmisc.c index 9f0044a..e8a30ac 100644 --- a/uip/mhmisc.c +++ b/uip/mhmisc.c @@ -2,8 +2,6 @@ /* * 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. @@ -36,8 +34,6 @@ static char *errs = NULL; */ int part_ok (CT, int); int type_ok (CT, int); -void set_endian (void); -int make_intermediates (char *); void content_error (char *, CT, char *, ...); void flush_errors (void); @@ -74,7 +70,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;