summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Grundmann <sg2342@googlemail.com>2017-05-31 21:55:13 +0000
committererdgeist <erdgeist@bauklotz.intern>2017-06-01 12:35:14 +0200
commit23593bca474dfad1ac0716b4b4d5e716339d0962 (patch)
tree5402785751d788107266e1a772ca39f4dfcecc1f
parent85589ce1f189cf4d001aa8e30ca84dec2eac6f28 (diff)
add missing [ to usage string
-rw-r--r--jaildaemon.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/jaildaemon.c b/jaildaemon.c
index f78d1b1..46e14af 100644
--- a/jaildaemon.c
+++ b/jaildaemon.c
@@ -95,8 +95,8 @@ static void exerr( char * message, ... ) {
95static void usage( char * cmd ) { 95static void usage( char * cmd ) {
96 fprintf( stderr, 96 fprintf( stderr,
97 "%s -D [-p pidfile] [-f ipcsockpath]\n" 97 "%s -D [-p pidfile] [-f ipcsockpath]\n"
98 "%s -c command -j jid [-t proctitle] [-rR] [-u uid] -f ipcsockpath]" 98 "%s -c command -j jid [-t proctitle] [-rR] [-u uid]"
99 "\n", 99 " [-f ipcsockpath]\n",
100 cmd, cmd ); 100 cmd, cmd );
101 exit( 1 ); 101 exit( 1 );
102} 102}