diff options
author | Michael Santos <michael.santos@gmail.com> | 2011-03-19 11:09:44 -0400 |
---|---|---|
committer | Daniel Lezcano <dlezcano@fr.ibm.com> | 2011-03-22 15:04:52 +0100 |
commit | 76f74594a176fe1591c5e6910c08a80364ff8640 (patch) | |
tree | 9704c012f47a9c1db0445238ff7a9719a7c2a564 /src | |
parent | Ensure monitored container name is null terminated (diff) | |
download | lxc-76f74594a176fe1591c5e6910c08a80364ff8640.tar.gz lxc-76f74594a176fe1591c5e6910c08a80364ff8640.tar.bz2 lxc-76f74594a176fe1591c5e6910c08a80364ff8640.zip |
lxc_unshare: edit help output
Signed-off-by: Michael Santos <michael.santos@gmail.com>
Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/lxc/lxc_unshare.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lxc/lxc_unshare.c b/src/lxc/lxc_unshare.c index a82490e..eb93c89 100644 --- a/src/lxc/lxc_unshare.c +++ b/src/lxc/lxc_unshare.c @@ -46,10 +46,10 @@ void usage(char *cmd) { fprintf(stderr, "%s <options> [command]\n", basename(cmd)); fprintf(stderr, "Options are:\n"); - fprintf(stderr, "\t -s flags: Ored list of flags to unshare:\n" \ + fprintf(stderr, "\t -s flags: ORed list of flags to unshare:\n" \ "\t MOUNT, PID, UTSNAME, IPC, USER, NETWORK\n"); fprintf(stderr, "\t -u <id> : new id to be set if -s USER is specified\n"); - fprintf(stderr, "\t if -f or -s PID is specified, <command> is mandatory)\n"); + fprintf(stderr, "\t if -s PID is specified, <command> is mandatory)\n"); _exit(1); } |