diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-04-23 05:44:59 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-04-23 05:44:59 +0000 |
commit | 9d4a17e0b69940881751798fbecdb39dc2a23ba4 (patch) | |
tree | 3974e1662559c141bbc2239a707abe9c658bac67 /coreutils/dd.c | |
parent | be002adb2fc0f929736b2eb429fe7efb606af0af (diff) | |
download | busybox-w32-9d4a17e0b69940881751798fbecdb39dc2a23ba4.tar.gz busybox-w32-9d4a17e0b69940881751798fbecdb39dc2a23ba4.tar.bz2 busybox-w32-9d4a17e0b69940881751798fbecdb39dc2a23ba4.zip |
dd: fix recent breakage (was comparing "if" with "if=" etc).
Diffstat (limited to 'coreutils/dd.c')
-rw-r--r-- | coreutils/dd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/dd.c b/coreutils/dd.c index e172b0c29..4d1ef0b76 100644 --- a/coreutils/dd.c +++ b/coreutils/dd.c | |||
@@ -93,9 +93,9 @@ int dd_main(int argc ATTRIBUTE_UNUSED, char **argv) | |||
93 | FLAG_COUNT = 1 << 5, | 93 | FLAG_COUNT = 1 << 5, |
94 | }; | 94 | }; |
95 | static const char keywords[] ALIGN1 = | 95 | static const char keywords[] ALIGN1 = |
96 | "bs=\0""count=\0""seek=\0""skip=\0""if=\0""of=\0" | 96 | "bs\0""count\0""seek\0""skip\0""if\0""of\0" |
97 | #if ENABLE_FEATURE_DD_IBS_OBS | 97 | #if ENABLE_FEATURE_DD_IBS_OBS |
98 | "ibs=\0""obs=\0""conv=\0" | 98 | "ibs\0""obs\0""conv\0" |
99 | #endif | 99 | #endif |
100 | ; | 100 | ; |
101 | #if ENABLE_FEATURE_DD_IBS_OBS | 101 | #if ENABLE_FEATURE_DD_IBS_OBS |