X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/ec68c7d9fca00e976df02842dc2c9d5a523567af..ecd50cc5f6c2a427e821483993678b78c94ffdfd:/uip/mhmisc.c?ds=sidebyside diff --git a/uip/mhmisc.c b/uip/mhmisc.c index ad50264e..778d8055 100644 --- a/uip/mhmisc.c +++ b/uip/mhmisc.c @@ -9,6 +9,8 @@ #include #include #include +#include "../sbr/makedir.h" +#include "mhmisc.h" extern int debugsw; @@ -25,16 +27,6 @@ int userrs = 0; static char *errs = NULL; -/* - * prototypes - */ -int part_ok (CT); -int part_exact(CT ct); -int type_ok (CT, int); -void content_error (char *, CT, char *, ...); -void flush_errors (void); - - int part_ok (CT ct) { @@ -102,7 +94,7 @@ type_ok (CT ct, int sP) /* - * Returns true if this content is marked as "inline". + * Returns true if the content has a disposition of "inline". * * Technically we should check parent content to see if they have * disposition to use as a default, but we don't right now. Maybe @@ -215,7 +207,7 @@ content_error (char *what, CT ct, char *fmt, ...) i = strlen (invo_name) + 2; /* Now add content type and subtype */ - snprintf (bp, buflen, "\n%*.*s(content %s/%s", i, i, "", + snprintf (bp, buflen, "\n%*s(content %s/%s", i, "", ci->ci_type, ci->ci_subtype); len = strlen (bp); bp += len;