diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2004-03-15 08:29:22 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2004-03-15 08:29:22 +0000 |
commit | b16674f3c1a961e0b5d6a57745f5f749d95c641e (patch) | |
tree | 4c6d2217f4d8306c59cf1096f8664e1cfd167213 /coreutils/uudecode.c | |
parent | e7135df4a650f9197b633784472f45602524855b (diff) | |
download | busybox-w32-b16674f3c1a961e0b5d6a57745f5f749d95c641e.tar.gz busybox-w32-b16674f3c1a961e0b5d6a57745f5f749d95c641e.tar.bz2 busybox-w32-b16674f3c1a961e0b5d6a57745f5f749d95c641e.zip |
Remove trailing whitespace. Update copyright to include 2004.
git-svn-id: svn://busybox.net/trunk/busybox@8630 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/uudecode.c')
-rw-r--r-- | coreutils/uudecode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/uudecode.c b/coreutils/uudecode.c index 1734ed419..96da7caf3 100644 --- a/coreutils/uudecode.c +++ b/coreutils/uudecode.c | |||
@@ -18,7 +18,7 @@ | |||
18 | * Based on specification from | 18 | * Based on specification from |
19 | * http://www.opengroup.org/onlinepubs/007904975/utilities/uuencode.html | 19 | * http://www.opengroup.org/onlinepubs/007904975/utilities/uuencode.html |
20 | * | 20 | * |
21 | * Bugs: the spec doesnt mention anything about "`\n`\n" prior to the "end" line | 21 | * Bugs: the spec doesnt mention anything about "`\n`\n" prior to the "end" line |
22 | */ | 22 | */ |
23 | 23 | ||
24 | 24 | ||
@@ -50,7 +50,7 @@ static int read_stduu(FILE *src_stream, FILE *dst_stream) | |||
50 | if (length > 60) { | 50 | if (length > 60) { |
51 | bb_error_msg_and_die("Line too long"); | 51 | bb_error_msg_and_die("Line too long"); |
52 | } | 52 | } |
53 | 53 | ||
54 | line_ptr++; | 54 | line_ptr++; |
55 | /* Tolerate an overly long line to acomadate a possible exta '`' */ | 55 | /* Tolerate an overly long line to acomadate a possible exta '`' */ |
56 | if (strlen(line_ptr) < length) { | 56 | if (strlen(line_ptr) < length) { |