diff options
author | Pavel Roskin <plroskin@gmail.com> | 2016-12-19 22:54:33 -0800 |
---|---|---|
committer | Pavel Roskin <plroskin@gmail.com> | 2016-12-19 23:58:13 -0800 |
commit | a01aaa19b8bf5d135b9af1ec7d9c32cc730178d6 (patch) | |
tree | f444c142566eb2c42073b18cc017b91c628fe789 | |
parent | a11af2bc95cc25a6e394f94640543cca494f3e27 (diff) | |
download | xrdp-proprietary-a01aaa19b8bf5d135b9af1ec7d9c32cc730178d6.tar.gz xrdp-proprietary-a01aaa19b8bf5d135b9af1ec7d9c32cc730178d6.zip |
Fix help text to match the manual and the actual behavior
The help text mentions "LIST" and "KILL" commands, but the manual says
"list" and "kill", and the command line parser expects the later.
-rw-r--r-- | sesman/tools/sesadmin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sesman/tools/sesadmin.c b/sesman/tools/sesadmin.c index 648598da..e4a1cc2b 100644 --- a/sesman/tools/sesadmin.c +++ b/sesman/tools/sesadmin.c @@ -183,8 +183,8 @@ void cmndHelp() fprintf(stderr, "-i=<port> : sesman port (default 3350)\n"); fprintf(stderr, "-c=<command> : command to execute on the server [MANDATORY]\n"); fprintf(stderr, " it can be one of those:\n"); - fprintf(stderr, " LIST\n"); - fprintf(stderr, " KILL:<sid>\n"); + fprintf(stderr, " list\n"); + fprintf(stderr, " kill:<sid>\n"); } void cmndList(struct SCP_CONNECTION *c) |