diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-07-30 12:57:19 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-07-30 12:57:19 +0200 |
commit | 6d48d3ee2a5a6b5bded1591952d8105fafdf783a (patch) | |
tree | a5d16bab6520f385101a77e7f15d05b3f875569c /include/busybox.h | |
parent | be116490d620cd5c980a6e0567e33e666a4fa656 (diff) | |
download | busybox-w32-6d48d3ee2a5a6b5bded1591952d8105fafdf783a.tar.gz busybox-w32-6d48d3ee2a5a6b5bded1591952d8105fafdf783a.tar.bz2 busybox-w32-6d48d3ee2a5a6b5bded1591952d8105fafdf783a.zip |
rename _BB_SUID_ALWAYS and NEVER into REQUIRE and DROP. No code changes.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include/busybox.h')
-rw-r--r-- | include/busybox.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/busybox.h b/include/busybox.h index 54c278f87..48ce856ea 100644 --- a/include/busybox.h +++ b/include/busybox.h | |||
@@ -21,9 +21,9 @@ typedef enum bb_install_loc_t { | |||
21 | } bb_install_loc_t; | 21 | } bb_install_loc_t; |
22 | 22 | ||
23 | typedef enum bb_suid_t { | 23 | typedef enum bb_suid_t { |
24 | _BB_SUID_NEVER = 0, | 24 | _BB_SUID_DROP = 0, |
25 | _BB_SUID_MAYBE, | 25 | _BB_SUID_MAYBE, |
26 | _BB_SUID_ALWAYS | 26 | _BB_SUID_REQUIRE |
27 | } bb_suid_t; | 27 | } bb_suid_t; |
28 | 28 | ||
29 | 29 | ||