summaryrefslogtreecommitdiff
path: root/selinux
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-03-29 10:30:50 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-03-29 10:30:50 +0000
commit3e816c1252cc55e3763f946622129d31ea1f0f20 (patch)
tree5031fd816b1df09eaa897530a37ce814bba95011 /selinux
parent3d43edb28c80ee9cb54335f593d42d5d0471e15a (diff)
downloadbusybox-w32-3e816c1252cc55e3763f946622129d31ea1f0f20.tar.gz
busybox-w32-3e816c1252cc55e3763f946622129d31ea1f0f20.tar.bz2
busybox-w32-3e816c1252cc55e3763f946622129d31ea1f0f20.zip
- 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.c4
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[])
163 fname[fname_len] = '\0'; 163 fname[fname_len] = '\0';
164 164
165 if (recursive_action(fname, 165 if (recursive_action(fname,
166 option_mask32 & OPT_RECURSIVE, 166 1<<option_mask32 & OPT_RECURSIVE,
167 FALSE, /* followLinks */
168 FALSE, /* depthFirst */
169 change_filedir_context, 167 change_filedir_context,
170 change_filedir_context, 168 change_filedir_context,
171 NULL, 0) != TRUE) 169 NULL, 0) != TRUE)