diff options
| author | Daniel Golle | 2020-11-26 03:29:45 +0000 |
|---|---|---|
| committer | Daniel Golle | 2020-11-27 01:06:09 +0000 |
| commit | e40828fa3f1122555b22ec59b2df937b721cb92d (patch) | |
| tree | dda27c7628bbccb39d81224d8aefb5db367e67b2 | |
| parent | acf36f2777ae971a773761b68b447d9eedee05a6 (diff) | |
| download | procd-e40828fa3f1122555b22ec59b2df937b721cb92d.tar.gz | |
jail: fix typo in usage output
'-j' is wrong, it should be '-i' (for _i_mmediately).
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
| -rw-r--r-- | jail/jail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jail/jail.c b/jail/jail.c index 6c55588..5229c4f 100644 --- a/jail/jail.c +++ b/jail/jail.c @@ -966,7 +966,7 @@ static void usage(void) fprintf(stderr, " -E\t\tfail if jail cannot be setup\n"); fprintf(stderr, " -y\t\tprovide jail console\n"); fprintf(stderr, " -J <dir>\tcreate container from OCI bundle\n"); - fprintf(stderr, " -j\t\tstart container immediately\n"); + fprintf(stderr, " -i\t\tstart container immediately\n"); fprintf(stderr, " -P <pidfile>\tcreate <pidfile>\n"); fprintf(stderr, "\nWarning: by default root inside the jail is the same\n\ and he has the same powers as root outside the jail,\n\ |