From: Rostislav Skudnov Date: Wed, 6 Feb 2019 11:57:29 +0000 (+0000) Subject: chcon: Fix typo in ACTION_RECURSE X-Git-Tag: 1_31_0~184 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e6503f2f0982378cd753be152fa19f8336c357bc;p=oweals%2Fbusybox.git chcon: Fix typo in ACTION_RECURSE Signed-off-by: Rostislav Skudnov Signed-off-by: Denys Vlasenko --- 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) fname[fname_len] = '\0'; if (recursive_action(fname, - ((option_mask32 & OPT_RECURSIVE) ? ACTION_RECURSIVE : 0), + ((option_mask32 & OPT_RECURSIVE) ? ACTION_RECURSE : 0), change_filedir_context, change_filedir_context, NULL, 0) != TRUE)