X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fdropsbr.c;h=84435a2eb290cb1ed383ee5f13eecb4320f89583;hp=2b3d0208740bb0fe88692ff8290d6d82c96ace65;hb=322f6f0518f2fca892733dea85d87c33fcb65e83;hpb=55b8f7b6a738adb4dc9833233fc6111f3cd56969 diff --git a/uip/dropsbr.c b/uip/dropsbr.c index 2b3d020..84435a2 100644 --- a/uip/dropsbr.c +++ b/uip/dropsbr.c @@ -376,7 +376,7 @@ mbx_copy (char *mailbox, int mbx_style, int md, int fd, fp = strchr(ep + 1, '\n'); tp = dctime(dlocaltimenow()); snprintf (buffer, sizeof(buffer), "From %.*s %s", - fp - ep, ep, tp); + (int)(fp - ep), ep, tp); } else if (!strncmp (buffer, "X-Envelope-From:", 16)) { /* * Change the "X-Envelope-From:" field @@ -488,10 +488,10 @@ map_name (char *file) if ((dp = strchr(cp = r1bindex (file, '/'), '.')) == NULL) dp = cp + strlen (cp); if (cp == file) - snprintf (buffer, sizeof(buffer), ".%.*s%s", dp - cp, cp, ".map"); + snprintf (buffer, sizeof(buffer), ".%.*s%s", (int)(dp - cp), cp, ".map"); else snprintf (buffer, sizeof(buffer), "%.*s.%.*s%s", - cp - file, file, dp - cp, cp, ".map"); + (int)(cp - file), file, (int)(dp - cp), cp, ".map"); return buffer; }