diff options
author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-03-10 19:22:06 +0000 |
---|---|---|
committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-03-10 19:22:06 +0000 |
commit | 07ea853040a1240d40fefe5bb871a5c3c98c77a6 (patch) | |
tree | beb32cedafc6232bf8a49fe90f0769d471ea6791 /shell | |
parent | 8ee3984df387bf31ba1d652a861d7fedbac7bfa8 (diff) | |
download | busybox-w32-07ea853040a1240d40fefe5bb871a5c3c98c77a6.tar.gz busybox-w32-07ea853040a1240d40fefe5bb871a5c3c98c77a6.tar.bz2 busybox-w32-07ea853040a1240d40fefe5bb871a5c3c98c77a6.zip |
Patch from Denis Vlasenko turning static const int (which gets emitted into
the busybox binary) into enums (which don't).
git-svn-id: svn://busybox.net/trunk/busybox@14513 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell')
-rw-r--r-- | shell/lash.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/shell/lash.c b/shell/lash.c index 968396e41..8e8d45ae9 100644 --- a/shell/lash.c +++ b/shell/lash.c | |||
@@ -57,11 +57,13 @@ enum redir_type { REDIRECT_INPUT, REDIRECT_OVERWRITE, | |||
57 | }; | 57 | }; |
58 | #endif | 58 | #endif |
59 | 59 | ||
60 | static const unsigned int DEFAULT_CONTEXT=0x1; | 60 | enum { |
61 | static const unsigned int IF_TRUE_CONTEXT=0x2; | 61 | DEFAULT_CONTEXT = 0x1, |
62 | static const unsigned int IF_FALSE_CONTEXT=0x4; | 62 | IF_TRUE_CONTEXT = 0x2, |
63 | static const unsigned int THEN_EXP_CONTEXT=0x8; | 63 | IF_FALSE_CONTEXT = 0x4, |
64 | static const unsigned int ELSE_EXP_CONTEXT=0x10; | 64 | THEN_EXP_CONTEXT = 0x8, |
65 | ELSE_EXP_CONTEXT = 0x10 | ||
66 | }; | ||
65 | 67 | ||
66 | #ifdef CONFIG_LASH_PIPE_N_REDIRECTS | 68 | #ifdef CONFIG_LASH_PIPE_N_REDIRECTS |
67 | struct redir_struct { | 69 | struct redir_struct { |