From: Jim Meyering Date: Sat, 13 Jan 2007 15:43:07 +0000 (+0100) Subject: * src/id.c (main): Tweak id -Z diagnostic. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5f997760c926a9d0d17bee405abea8406fc40e8b;p=thirdparty%2Fcoreutils.git * src/id.c (main): Tweak id -Z diagnostic. --- diff --git a/ChangeLog-selinux b/ChangeLog-selinux index 4993bd88e6..f8f92c3f4a 100644 --- a/ChangeLog-selinux +++ b/ChangeLog-selinux @@ -1,5 +1,7 @@ 2007-01-13 Jim Meyering + * src/id.c (main): Tweak id -Z diagnostic. + id: Add SELinux support: -Z option. * src/id.c (main): Apply patches from Fedora, with these changes: Remove #ifdef WITH_SELINUX. diff --git a/src/id.c b/src/id.c index 5adf0102e9..cced6ecb07 100644 --- a/src/id.c +++ b/src/id.c @@ -141,8 +141,8 @@ main (int argc, char **argv) case 'Z': /* politely decline if we're not on a selinux-enabled kernel. */ if (!selinux_enabled) - error (EXIT_FAILURE, 0, _("--context (-Z) can be used only on " - "an SELinux-enabled kernel")); + error (EXIT_FAILURE, 0, + _("--context (-Z) works only on an SELinux-enabled kernel")); just_context = 1; break;