summaryrefslogtreecommitdiff
path: root/radix.c
diff options
context:
space:
mode:
Diffstat (limited to 'radix.c')
-rw-r--r--radix.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/radix.c b/radix.c
index 6637b2fb1..c87dd2d35 100644
--- a/radix.c
+++ b/radix.c
@@ -74,9 +74,11 @@ uudecode(const char *bufcoded, unsigned char *bufplain, int outbufsize)
74 while (*bufcoded == ' ' || *bufcoded == '\t') 74 while (*bufcoded == ' ' || *bufcoded == '\t')
75 bufcoded++; 75 bufcoded++;
76 76
77 /* Figure out how many characters are in the input buffer. If this 77 /*
78 would decode into more bytes than would fit into the output 78 * Figure out how many characters are in the input buffer. If this
79 buffer, adjust the number of input bytes downwards. */ 79 * would decode into more bytes than would fit into the output
80 * buffer, adjust the number of input bytes downwards.
81 */
80 bufin = bufcoded; 82 bufin = bufcoded;
81 while (DEC(*(bufin++)) <= MAXVAL); 83 while (DEC(*(bufin++)) <= MAXVAL);
82 nprbytes = bufin - bufcoded - 1; 84 nprbytes = bufin - bufcoded - 1;