]> diplodocus.org Git - nmh/blobdiff - sbr/fmt_scan.c
Added support to mhfixmsg -reformat for multipart/related. If it has
[nmh] / sbr / fmt_scan.c
index 97a4a05a83a78c370eb7b0925f1a0cc0fb6294a3..ec60e1ba48bb633b50fe593c94f15331a72ab028 100644 (file)
@@ -745,6 +745,9 @@ fmt_scan (struct format *format, charstring_t scanlp, int width, int *dat,
        case FT_LV_MINUS_L:
            value = fmt->f_value - value;
            break;
+       case FT_LV_MULTIPLY_L:
+           value *= fmt->f_value;
+           break;
        case FT_LV_DIVIDE_L:
            if (fmt->f_value)
                value = value / fmt->f_value;