ar: heh, there *was* "-1" already...
[oweals/busybox.git] / selinux / runcon.c
index a9471ef0ce770878204e06650f4786bbfda37cbc..8472b709082086b4c1e0631865e1bbeae88ae7a2 100644 (file)
@@ -25,6 +25,8 @@
  *
  * Port to busybox: KaiGai Kohei <kaigai@kaigai.gr.jp>
  *                  - based on coreutils-5.97 (in Fedora Core 6)
+ *
+ * Licensed under GPLv2, see file LICENSE in this tarball for details.
  */
 #include <getopt.h>
 #include <selinux/context.h>
@@ -39,13 +41,13 @@ static context_t runcon_compute_new_context(char *user, char *role, char *type,
        security_context_t cur_context;
 
        if (getcon(&cur_context))
-               bb_error_msg_and_die("cannot get current context");
+               bb_error_msg_and_die("can't get current context");
 
        if (compute_trans) {
                security_context_t file_context, new_context;
 
                if (getfilecon(command, &file_context) < 0)
-                       bb_error_msg_and_die("cannot retrieve attributes of '%s'",
+                       bb_error_msg_and_die("can't retrieve attributes of '%s'",
                                             command);
                if (security_compute_create(cur_context, file_context,
                                            SECCLASS_PROCESS, &new_context))
@@ -127,10 +129,10 @@ int runcon_main(int argc UNUSED_PARAM, char **argv)
                                     context_str(con));
 
        if (setexeccon(context_str(con)))
-               bb_error_msg_and_die("cannot set up security context '%s'",
+               bb_error_msg_and_die("can't set up security context '%s'",
                                     context_str(con));
 
        execvp(argv[0], argv);
 
-       bb_perror_msg_and_die("cannot execute '%s'", argv[0]);
+       bb_perror_msg_and_die("can't execute '%s'", argv[0]);
 }