aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-03-11 22:16:02 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-03-11 22:16:02 +0000
commit1203c9bf2f63938f7766a3022a9659b25712824f (patch)
tree162a5019d61ce2403466754ab0ee727e04f1563b /coreutils
parentbaca1759129945fcd03d96ccc840892401b5a1af (diff)
downloadbusybox-1203c9bf2f63938f7766a3022a9659b25712824f.tar.gz
next portion of selinux updates: chcon, runcon. From
Yuichi Nakamura <himainu-ynakam@miomio.jp> KaiGai Kohei <busybox@kaigai.gr.jp>
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/id.c2
-rw-r--r--coreutils/install.c3
2 files changed, 3 insertions, 2 deletions
diff --git a/coreutils/id.c b/coreutils/id.c
index a0364675f..e183402fa 100644
--- a/coreutils/id.c
+++ b/coreutils/id.c
@@ -89,7 +89,7 @@ int id_main(int argc, char **argv)
if (flags & JUST_CONTEXT) {
selinux_or_die();
if (argc - optind == 1) {
- bb_error_msg_and_die("can't print security context when user specified");
+ bb_error_msg_and_die("user name can't be passed with -Z");
}
if (getcon(&scontext)) {
diff --git a/coreutils/install.c b/coreutils/install.c
index 83facad9d..1f65407b1 100644
--- a/coreutils/install.c
+++ b/coreutils/install.c
@@ -1,6 +1,7 @@
/* vi: set sw=4 ts=4: */
/*
- * Copyright (C) 2003 by Glenn McGrath <bug1@iinet.net.au>
+ * Copyright (C) 2003 by Glenn McGrath <bug1@iinet.net.au>
+ * SELinux support: by Yuichi Nakamura <ynakam@hitachisoft.jp>
*
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
*