diff options
author | kraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-04-12 21:38:06 +0000 |
---|---|---|
committer | kraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-04-12 21:38:06 +0000 |
commit | afa7860dbdafb915a327e20afde531444581432f (patch) | |
tree | bc9146b79f0892a753a1185698b00eccb10e92c2 /coreutils/dos2unix.c | |
parent | 86e0848acbee5cc811a82541bf494faadb536d87 (diff) | |
download | busybox-w32-afa7860dbdafb915a327e20afde531444581432f.tar.gz busybox-w32-afa7860dbdafb915a327e20afde531444581432f.tar.bz2 busybox-w32-afa7860dbdafb915a327e20afde531444581432f.zip |
Fix dos2unix/tr problem noted by Larry Doolittle.
git-svn-id: svn://busybox.net/trunk/busybox@2341 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/dos2unix.c')
-rw-r--r-- | coreutils/dos2unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/dos2unix.c b/coreutils/dos2unix.c index 8308c4179..4ca665841 100644 --- a/coreutils/dos2unix.c +++ b/coreutils/dos2unix.c | |||
@@ -32,7 +32,7 @@ | |||
32 | #include "busybox.h" | 32 | #include "busybox.h" |
33 | 33 | ||
34 | // if fn is NULL then input is stdin and output is stdout | 34 | // if fn is NULL then input is stdin and output is stdout |
35 | extern int convert(char *fn, int ConvType) { | 35 | static int convert(char *fn, int ConvType) { |
36 | char c; | 36 | char c; |
37 | char *tempFn = NULL; | 37 | char *tempFn = NULL; |
38 | FILE *in = stdin, *out = stdout; | 38 | FILE *in = stdin, *out = stdout; |