aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2019-06-08 13:04:44 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2019-06-08 13:04:44 +0200
commit92549250f36f91f4492c296bb227cfca83d5c4fe (patch)
tree8b93d86151eff8f21e14cdb046f988dafd161437 /coreutils
parent22cc92833f98450f37a2e82e4a6a36c418b4cc67 (diff)
downloadbusybox-w32-92549250f36f91f4492c296bb227cfca83d5c4fe.tar.gz
busybox-w32-92549250f36f91f4492c296bb227cfca83d5c4fe.tar.bz2
busybox-w32-92549250f36f91f4492c296bb227cfca83d5c4fe.zip
expand,unexpand: drop broken test, add FIXME comment
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/expand.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/coreutils/expand.c b/coreutils/expand.c
index f7e4619f9..8d064db5e 100644
--- a/coreutils/expand.c
+++ b/coreutils/expand.c
@@ -63,6 +63,8 @@ enum {
63 OPT_ALL = 1 << 2, 63 OPT_ALL = 1 << 2,
64}; 64};
65 65
66//FIXME: does not work properly with input containing NULs
67
66#if ENABLE_EXPAND 68#if ENABLE_EXPAND
67static void expand(FILE *file, unsigned tab_size, unsigned opt) 69static void expand(FILE *file, unsigned tab_size, unsigned opt)
68{ 70{