diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-03-29 10:30:50 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-03-29 10:30:50 +0000 |
commit | 3e816c1252cc55e3763f946622129d31ea1f0f20 (patch) | |
tree | 5031fd816b1df09eaa897530a37ce814bba95011 /selinux | |
parent | 3d43edb28c80ee9cb54335f593d42d5d0471e15a (diff) | |
download | busybox-3e816c1252cc55e3763f946622129d31ea1f0f20.tar.gz |
- fold recurse, depthFirst and dereference params into one param flags.
Minor size improvement (-16b for size, -24b according to bloat-o-meter).
Diffstat (limited to 'selinux')
-rw-r--r-- | selinux/chcon.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/selinux/chcon.c b/selinux/chcon.c index 72cfa93c3..0eab6864e 100644 --- a/selinux/chcon.c +++ b/selinux/chcon.c @@ -163,9 +163,7 @@ int chcon_main(int argc, char *argv[]) fname[fname_len] = '\0'; if (recursive_action(fname, - option_mask32 & OPT_RECURSIVE, - FALSE, /* followLinks */ - FALSE, /* depthFirst */ + 1<<option_mask32 & OPT_RECURSIVE, change_filedir_context, change_filedir_context, NULL, 0) != TRUE) |