diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-13 09:08:27 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-13 09:08:27 +0100 |
commit | 6331cf059ccfdf35f4e5a505cbae885094cc41b0 (patch) | |
tree | ccb4b4f0d96d9636861a75f7fc6c97b8b15bd306 /selinux/chcon.c | |
parent | f4fee418ae9f5308b4d32bc8d4e618f779f3203f (diff) | |
download | busybox-6331cf059ccfdf35f4e5a505cbae885094cc41b0.tar.gz |
*: use "can't" instead of "cannot"
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'selinux/chcon.c')
-rw-r--r-- | selinux/chcon.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/selinux/chcon.c b/selinux/chcon.c index 55c2522f6..4395a7ee4 100644 --- a/selinux/chcon.c +++ b/selinux/chcon.c @@ -49,12 +49,12 @@ static int FAST_FUNC change_filedir_context( } if (status < 0 && errno != ENODATA) { if ((option_mask32 & OPT_QUIET) == 0) - bb_error_msg("cannot obtain security context: %s", fname); + bb_error_msg("can't obtain security context: %s", fname); goto skip; } if (file_context == NULL && specified_context == NULL) { - bb_error_msg("cannot apply partial context to unlabeled file %s", fname); + bb_error_msg("can't apply partial context to unlabeled file %s", fname); goto skip; } @@ -62,7 +62,7 @@ static int FAST_FUNC change_filedir_context( context = set_security_context_component(file_context, user, role, type, range); if (!context) { - bb_error_msg("cannot compute security context from %s", file_context); + bb_error_msg("can't compute security context from %s", file_context); goto skip; } } else { @@ -75,7 +75,7 @@ static int FAST_FUNC change_filedir_context( context_string = context_str(context); if (!context_string) { - bb_error_msg("cannot obtain security context in text expression"); + bb_error_msg("can't obtain security context in text expression"); goto skip; } |