From 0fec449de334a352b5fef26b3bdc4275b7d79a70 Mon Sep 17 00:00:00 2001 From: Michael Debertol Date: Fri, 18 Jun 2021 11:58:23 +0200 Subject: [PATCH] mkfifo: make rustfmt work --- src/uu/mkfifo/src/mkfifo.rs | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/uu/mkfifo/src/mkfifo.rs b/src/uu/mkfifo/src/mkfifo.rs index ad12e230d..ea0906567 100644 --- a/src/uu/mkfifo/src/mkfifo.rs +++ b/src/uu/mkfifo/src/mkfifo.rs @@ -86,8 +86,16 @@ pub fn uu_app() -> App<'static, 'static> { .arg( Arg::with_name(options::SE_LINUX_SECURITY_CONTEXT) .short(options::SE_LINUX_SECURITY_CONTEXT) - .help("set the SELinux security context to default type") + .help("set the SELinux security context to default type"), + ) + .arg( + Arg::with_name(options::CONTEXT) + .long(options::CONTEXT) + .value_name("CTX") + .help( + "like -Z, or if CTX is specified then set the SELinux \ + or SMACK security context to CTX", + ), ) - .arg(Arg::with_name(options::CONTEXT).long(options::CONTEXT).value_name("CTX").help("like -Z, or if CTX is specified then set the SELinux\nor SMACK security context to CTX")) .arg(Arg::with_name(options::FIFO).hidden(true).multiple(true)) }