X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=libbb%2Fselinux_common.c;h=62910e2856fce082d1d29ae9094261e4ad95fd11;hb=df9196d824ea9bca7590edade631362e89b5c6ce;hp=275a761d29b76b436ace882b6e2a0e6ffae8f8d8;hpb=db12d1d733ab7de0c5f4cda261eb79fd334a4ed9;p=oweals%2Fbusybox.git diff --git a/libbb/selinux_common.c b/libbb/selinux_common.c index 275a761d2..62910e285 100644 --- a/libbb/selinux_common.c +++ b/libbb/selinux_common.c @@ -4,7 +4,7 @@ * * Copyright 2007 KaiGai Kohei * - * Licensed under GPLv2, see file LICENSE in this tarball for details. + * Licensed under GPLv2, see file LICENSE in this source tree. */ #include "libbb.h" #include @@ -36,7 +36,7 @@ void FAST_FUNC setfscreatecon_or_die(security_context_t scontext) if (setfscreatecon(scontext) < 0) { /* Can be NULL. All known printf implementations * display "(null)", "" etc */ - bb_perror_msg_and_die("cannot set default " + bb_perror_msg_and_die("can't set default " "file creation context to %s", scontext); } } @@ -53,4 +53,3 @@ void FAST_FUNC selinux_preserve_fcontext(int fdesc) setfscreatecon_or_die(context); freecon(context); } -