Fix another build failure found with randconfig
[oweals/busybox.git] / libbb / selinux_common.c
index 5fdbe9d5870684ce256fd0c923d84427dbb0cbfe..62910e2856fce082d1d29ae9094261e4ad95fd11 100644 (file)
@@ -3,6 +3,8 @@
  *   -- common SELinux utility functions
  *
  * Copyright 2007 KaiGai Kohei <kaigai@kaigai.gr.jp>
+ *
+ * Licensed under GPLv2, see file LICENSE in this source tree.
  */
 #include "libbb.h"
 #include <selinux/context.h>
@@ -34,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)", "<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);
        }
 }
@@ -51,4 +53,3 @@ void FAST_FUNC selinux_preserve_fcontext(int fdesc)
        setfscreatecon_or_die(context);
        freecon(context);
 }
-