diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-10 21:38:30 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-10 21:38:30 +0000 |
commit | 335b63d8d1876ce4e172ebcc9d64544785682244 (patch) | |
tree | 14183fd728ce51ae10baee70f7d8f72c39d30649 /util-linux/getopt.c | |
parent | 07c394e69b0cfa7cd30e97ffc6edb0d857905f45 (diff) | |
download | busybox-w32-335b63d8d1876ce4e172ebcc9d64544785682244.tar.gz busybox-w32-335b63d8d1876ce4e172ebcc9d64544785682244.tar.bz2 busybox-w32-335b63d8d1876ce4e172ebcc9d64544785682244.zip |
make a few struct bb_applet members conditional
rename sllep_and_die -> xfunc_die
make fflush_stdout_and_exit NOFORK-safe
fix some buglets found by randomconfig
Diffstat (limited to 'util-linux/getopt.c')
-rw-r--r-- | util-linux/getopt.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/util-linux/getopt.c b/util-linux/getopt.c index fefa02206..85a1d4410 100644 --- a/util-linux/getopt.c +++ b/util-linux/getopt.c | |||
@@ -51,10 +51,8 @@ enum { | |||
51 | OPT_s = 0x10, // -s | 51 | OPT_s = 0x10, // -s |
52 | OPT_T = 0x20, // -T | 52 | OPT_T = 0x20, // -T |
53 | OPT_u = 0x40, // -u | 53 | OPT_u = 0x40, // -u |
54 | #if ENABLE_GETOPT_LONG | ||
55 | OPT_a = 0x80, // -a | 54 | OPT_a = 0x80, // -a |
56 | OPT_l = 0x100, // -l | 55 | OPT_l = 0x100, // -l |
57 | #endif | ||
58 | SHELL_IS_TCSH = 0x8000, /* hijack this bit for other purposes */ | 56 | SHELL_IS_TCSH = 0x8000, /* hijack this bit for other purposes */ |
59 | }; | 57 | }; |
60 | 58 | ||