X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/5f2be5a2fd2659a9a1c9bdf221936ace436a2e3f..888c7cccce9b0259d87383df77503b17a4284b86:/uip/mhparse.c diff --git a/uip/mhparse.c b/uip/mhparse.c index 7851e185..a4998345 100644 --- a/uip/mhparse.c +++ b/uip/mhparse.c @@ -59,6 +59,7 @@ struct k2v SubMultiPart[] = { { "alternative", MULTI_ALTERNATE }, { "digest", MULTI_DIGEST }, { "parallel", MULTI_PARALLEL }, + { "related", MULTI_RELATED }, { NULL, MULTI_UNKNOWN } /* this one must be last! */ }; @@ -3149,6 +3150,8 @@ ct_subtype_str (int type, int subtype) { return "digest"; case MULTI_PARALLEL: return "parallel"; + case MULTI_RELATED: + return "related"; default: return "unknown_multipart_subtype"; }