X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/6eb1f7c57d8343e61a1130491d08fd821746adc9..f2753d64be0a74a22018e03ec9c04cc9ca45d3ab:/sbr/mts.c diff --git a/sbr/mts.c b/sbr/mts.c index 285ced5d..c7378c71 100644 --- a/sbr/mts.c +++ b/sbr/mts.c @@ -1,6 +1,4 @@ - -/* - * mts.c -- definitions for the mail transport system +/* mts.c -- definitions for the mail transport system * * This code is Copyright (c) 2002, by the authors of nmh. See the * COPYRIGHT file in the root directory of the nmh distribution for @@ -182,6 +180,7 @@ tailor_value (char *s) case 't': *bp = '\t'; break; case 0: s--; + /* FALLTHRU */ case QUOTE: *bp = QUOTE; break; @@ -193,7 +192,7 @@ tailor_value (char *s) } r = ((unsigned char) *s) != '0' ? 10 : 8; for (i = 0; isdigit ((unsigned char) *s); s++) - i = i * r + ((unsigned char) *s) - '0'; + i *= r + ((unsigned char) *s) - '0'; s--; *bp = toascii (i); break;