diff options
author | Denys Vlasenko | 2015-10-19 04:37:19 +0200 |
---|---|---|
committer | Denys Vlasenko | 2015-10-19 04:37:19 +0200 |
commit | 3d0805e9e7c45e6c0f9fb5e587d8b4a5a5f3c74c (patch) | |
tree | d950f4ca13fcd5993a34daf36b61f719e226497a /coreutils | |
parent | 526d85831e7480b9c7a3673d8dd356a438e6dd74 (diff) | |
download | busybox-3d0805e9e7c45e6c0f9fb5e587d8b4a5a5f3c74c.zip busybox-3d0805e9e7c45e6c0f9fb5e587d8b4a5a5f3c74c.tar.gz |
libbb: make parse_chown_usergroup_or_die() set unspecified uid/gid to -1
function old new delta
parse_chown_usergroup_or_die 102 115 +13
chown_main 190 175 -15
start_stop_daemon_main 1043 1027 -16
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 1/2 up/down: 13/-31) Total: -18 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/chown.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/coreutils/chown.c b/coreutils/chown.c index eaa1ee2..247aa3b 100644 --- a/coreutils/chown.c +++ b/coreutils/chown.c @@ -112,10 +112,6 @@ int chown_main(int argc UNUSED_PARAM, char **argv) int opt, flags; struct param_t param; - /* Just -1 might not work: uid_t may be unsigned long */ - param.ugid.uid = -1L; - param.ugid.gid = -1L; - #if ENABLE_FEATURE_CHOWN_LONG_OPTIONS applet_long_options = chown_longopts; #endif |