X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/0a032eea07f6d77ac6ea4d5a39c9491c34358058..f2753d64be0a74a22018e03ec9c04cc9ca45d3ab:/sbr/mts.c diff --git a/sbr/mts.c b/sbr/mts.c index d3357e37..c7378c71 100644 --- a/sbr/mts.c +++ b/sbr/mts.c @@ -1,5 +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 @@ -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;