Replaced mkinstalldirs with `mkdir -p'.
[mmh] / uip / mhbuildsbr.c
index ab8d99c..069ea85 100644 (file)
@@ -20,7 +20,6 @@
 #include <h/md5.h>
 #include <errno.h>
 #include <signal.h>
-#include <h/mts.h>
 #include <h/tws.h>
 #include <h/mime.h>
 #include <h/mhparse.h>
@@ -1335,7 +1334,7 @@ scan_content(CT ct)
                                        if (!isspace(*cp))
                                                break;
                                *++cp = '\0';
-                               if (!strncmp(buffer + 2, prefix, len) &&
+                               if (strncmp(buffer + 2, prefix, len)==0 &&
                                                isdigit(buffer[2 + len])) {
                                        boundaryclash = 1;
                                        /* no need to keep checking */
@@ -1562,11 +1561,6 @@ skip_headers:
        switch (ct->c_encoding) {
        case CE_7BIT:
                /* Nothing to output */
-#if 0
-               np = getcpy(ENCODING_FIELD);
-               vp = concat(" ", "7bit", "\n", NULL);
-               add_header(ct, np, vp);
-#endif
                break;
 
        case CE_8BIT: