diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-04-10 14:16:19 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-04-10 14:16:19 +0000 |
commit | 163516da3ae54a587fb476c621793bd206f380c2 (patch) | |
tree | e62f88322f87006480624f0cf8f68ee6687e4d85 /applets | |
parent | de17ece1dbbb3a5399e82fb5b820bb44997f8ca4 (diff) | |
download | busybox-163516da3ae54a587fb476c621793bd206f380c2.tar.gz |
- very minor shrinkage (-3b)
Diffstat (limited to 'applets')
-rw-r--r-- | applets/applets.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/applets/applets.c b/applets/applets.c index 9218b40e4..66f2b821d 100644 --- a/applets/applets.c +++ b/applets/applets.c @@ -52,7 +52,7 @@ const unsigned short NUM_APPLETS = sizeof(applets) / sizeof(struct BB_applet) - const struct BB_applet *current_applet; const char *applet_name ATTRIBUTE_EXTERNALLY_VISIBLE; #ifdef BB_NOMMU -smallint re_execed; +bool re_execed; #endif @@ -68,7 +68,7 @@ static struct BB_suid_config { struct BB_suid_config *m_next; } *suid_config; -static smallint suid_cfg_readable; +static bool suid_cfg_readable; /* check if u is member of group g */ static int ingroup(uid_t u, gid_t g) @@ -135,7 +135,9 @@ static void parse_config_file(void) const char *errmsg; char *s; char *e; - int i, lc, section; + int i; + unsigned lc; + smallint section; char buffer[256]; struct stat st; @@ -371,7 +373,7 @@ static void check_suid(const struct BB_applet *applet) } #if !ENABLE_FEATURE_SUID_CONFIG_QUIET { - static smallint onetime = 0; + static bool onetime = 0; if (!onetime) { onetime = 1; |