diff options
| author | Eric Andersen <andersen@codepoet.org> | 2001-10-24 05:00:29 +0000 |
|---|---|---|
| committer | Eric Andersen <andersen@codepoet.org> | 2001-10-24 05:00:29 +0000 |
| commit | bdfd0d78bc44e73d693510e70087857785b3b521 (patch) | |
| tree | 153a573095afac8d8d0ea857759ecabd77fb28b7 /coreutils/uuencode.c | |
| parent | 9260fc5552a3ee52eb95823aa6689d52a1ffd33c (diff) | |
| download | busybox-w32-bdfd0d78bc44e73d693510e70087857785b3b521.tar.gz busybox-w32-bdfd0d78bc44e73d693510e70087857785b3b521.tar.bz2 busybox-w32-bdfd0d78bc44e73d693510e70087857785b3b521.zip | |
Major rework of the directory structure and the entire build system.
-Erik
Diffstat (limited to 'coreutils/uuencode.c')
| -rw-r--r-- | coreutils/uuencode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/uuencode.c b/coreutils/uuencode.c index fc037403a..0a362a262 100644 --- a/coreutils/uuencode.c +++ b/coreutils/uuencode.c | |||
| @@ -84,8 +84,8 @@ int uuencode_main(int argc, char **argv) | |||
| 84 | { | 84 | { |
| 85 | const int src_buf_size = 60; // This *MUST* be a multiple of 3 | 85 | const int src_buf_size = 60; // This *MUST* be a multiple of 3 |
| 86 | const int dst_buf_size = 4 * ((src_buf_size + 2) / 3); | 86 | const int dst_buf_size = 4 * ((src_buf_size + 2) / 3); |
| 87 | RESERVE_BB_BUFFER(src_buf, src_buf_size + 1); | 87 | RESERVE_CONFIG_BUFFER(src_buf, src_buf_size + 1); |
| 88 | RESERVE_BB_BUFFER(dst_buf, dst_buf_size + 1); | 88 | RESERVE_CONFIG_BUFFER(dst_buf, dst_buf_size + 1); |
| 89 | struct stat stat_buf; | 89 | struct stat stat_buf; |
| 90 | FILE *src_stream = stdin; | 90 | FILE *src_stream = stdin; |
| 91 | char *tbl = tbl_std; | 91 | char *tbl = tbl_std; |
