aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRostislav Skudnov <rostislav@tuxera.com>2019-02-06 11:57:29 +0000
committerDenys Vlasenko <vda.linux@googlemail.com>2019-02-08 12:24:46 +0100
commite6503f2f0982378cd753be152fa19f8336c357bc (patch)
tree70a15dc797441daa62ea048b17bf6d7c7adc7c1b
parent5a387e26c2460428d4d5d9a2b2f074a31a994da1 (diff)
downloadbusybox-w32-e6503f2f0982378cd753be152fa19f8336c357bc.tar.gz
busybox-w32-e6503f2f0982378cd753be152fa19f8336c357bc.tar.bz2
busybox-w32-e6503f2f0982378cd753be152fa19f8336c357bc.zip
chcon: Fix typo in ACTION_RECURSE
Signed-off-by: Rostislav Skudnov <rostislav@tuxera.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--selinux/chcon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/selinux/chcon.c b/selinux/chcon.c
index 92eb76737..5bf91710c 100644
--- a/selinux/chcon.c
+++ b/selinux/chcon.c
@@ -204,7 +204,7 @@ int chcon_main(int argc UNUSED_PARAM, char **argv)
204 fname[fname_len] = '\0'; 204 fname[fname_len] = '\0';
205 205
206 if (recursive_action(fname, 206 if (recursive_action(fname,
207 ((option_mask32 & OPT_RECURSIVE) ? ACTION_RECURSIVE : 0), 207 ((option_mask32 & OPT_RECURSIVE) ? ACTION_RECURSE : 0),
208 change_filedir_context, 208 change_filedir_context,
209 change_filedir_context, 209 change_filedir_context,
210 NULL, 0) != TRUE) 210 NULL, 0) != TRUE)