diff options
Diffstat (limited to 'usr.bin/ssh/radix.c')
-rw-r--r-- | usr.bin/ssh/radix.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/usr.bin/ssh/radix.c b/usr.bin/ssh/radix.c index 6637b2fb109..c87dd2d35b2 100644 --- a/usr.bin/ssh/radix.c +++ b/usr.bin/ssh/radix.c @@ -74,9 +74,11 @@ uudecode(const char *bufcoded, unsigned char *bufplain, int outbufsize) while (*bufcoded == ' ' || *bufcoded == '\t') bufcoded++; - /* Figure out how many characters are in the input buffer. If this - would decode into more bytes than would fit into the output - buffer, adjust the number of input bytes downwards. */ + /* + * Figure out how many characters are in the input buffer. If this + * would decode into more bytes than would fit into the output + * buffer, adjust the number of input bytes downwards. + */ bufin = bufcoded; while (DEC(*(bufin++)) <= MAXVAL); nprbytes = bufin - bufcoded - 1; |