diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2023-07-08 17:57:42 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2023-07-08 17:57:42 +0200 |
commit | e41e481fd5716fc9b2e2fdf2670d72c727ecb37f (patch) | |
tree | 90938a6f345df266b0b1d73ab607d42f975a3570 | |
parent | 07a95cfcabb0706a22599b4440b495b6cfa8123e (diff) | |
download | busybox-w32-e41e481fd5716fc9b2e2fdf2670d72c727ecb37f.tar.gz busybox-w32-e41e481fd5716fc9b2e2fdf2670d72c727ecb37f.tar.bz2 busybox-w32-e41e481fd5716fc9b2e2fdf2670d72c727ecb37f.zip |
hush: fix a compile failure
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | shell/hush.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c index 1b7e546fa..2f55b92ea 100644 --- a/shell/hush.c +++ b/shell/hush.c | |||
@@ -11173,7 +11173,7 @@ static int FAST_FUNC builtin_umask(char **argv) | |||
11173 | } | 11173 | } |
11174 | #endif | 11174 | #endif |
11175 | 11175 | ||
11176 | #if ENABLE_HUSH_EXPORT || ENABLE_HUSH_TRAP | 11176 | #if ENABLE_HUSH_EXPORT || ENABLE_HUSH_READONLY || ENABLE_HUSH_SET || ENABLE_HUSH_TRAP |
11177 | static void print_escaped(const char *s) | 11177 | static void print_escaped(const char *s) |
11178 | { | 11178 | { |
11179 | //TODO? bash "set" does not quote variables which contain only alnums and "%+,-./:=@_~", | 11179 | //TODO? bash "set" does not quote variables which contain only alnums and "%+,-./:=@_~", |