* complete copyright information.
*/
-#include <h/mh.h>
-#include <h/utils.h>
-#include <h/mime.h>
-#include <h/mhparse.h>
+#include "h/mh.h"
+#include "h/utils.h"
+#include "h/mime.h"
+#include "h/mhparse.h"
#include "sbr/m_mktemp.h"
#include "mhfree.h"
static void free_header (CT);
static void free_text (CT);
static void free_multi (CT);
-static void free_partial (CT);
static void free_external (CT);
static void free_pmlist (PM *);
case CT_MESSAGE:
switch (ct->c_subtype) {
- case MESSAGE_PARTIAL:
- free_partial (ct);
- break;
-
case MESSAGE_EXTERNAL:
free_external (ct);
break;
}
-static void
-free_partial (CT ct)
-{
- struct partial *p;
-
- if (!(p = (struct partial *) ct->c_ctparams))
- return;
-
- free(p->pm_partid);
-
- free(p);
- ct->c_ctparams = NULL;
-}
-
-
static void
free_external (CT ct)
{