diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-12-21 03:29:09 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:07:32 -0500 |
commit | 8d3d7534f24e3d260ad49a7d1bc359d813675ae8 (patch) | |
tree | 135dbd248f256d93f9e904e8c2580cb17e2d1dc2 /source4 | |
parent | 47021d0c69fa102f86bd900b2a048d9d979c0448 (diff) | |
download | samba-8d3d7534f24e3d260ad49a7d1bc359d813675ae8.tar.gz samba-8d3d7534f24e3d260ad49a7d1bc359d813675ae8.tar.bz2 samba-8d3d7534f24e3d260ad49a7d1bc359d813675ae8.zip |
r4303: a bit more consistent help on privileges commands in smbclient
(This used to be commit 2d2e9e6373be153f991ee899e9d66cd3979e309f)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/client/client.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source4/client/client.c b/source4/client/client.c index a83ff6d29e..ce0efe6fb6 100644 --- a/source4/client/client.c +++ b/source4/client/client.c @@ -1847,7 +1847,7 @@ static int cmd_lookup(const char **cmd_ptr) struct dom_sid *sid; if (!next_token(cmd_ptr,buf,NULL,sizeof(buf))) { - d_printf("lookup <name|sid>\n"); + d_printf("lookup <sid|name>\n"); talloc_free(mem_ctx); return 1; } @@ -1939,7 +1939,7 @@ static int cmd_addprivileges(const char **cmd_ptr) struct lsa_RightSet rights; if (!next_token(cmd_ptr,buf,NULL,sizeof(buf))) { - d_printf("addprivileges <sid> <privilege...>\n"); + d_printf("addprivileges <sid|name> <privilege...>\n"); talloc_free(mem_ctx); return 1; } @@ -1989,7 +1989,7 @@ static int cmd_delprivileges(const char **cmd_ptr) struct lsa_RightSet rights; if (!next_token(cmd_ptr,buf,NULL,sizeof(buf))) { - d_printf("delprivileges <sid> <privilege...>\n"); + d_printf("delprivileges <sid|name> <privilege...>\n"); talloc_free(mem_ctx); return 1; } @@ -2577,7 +2577,7 @@ static struct } commands[] = { {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}}, - {"addprivileges",cmd_addprivileges,"<sid|user> <privilege...> add privileges for a user",{COMPL_NONE,COMPL_NONE}}, + {"addprivileges",cmd_addprivileges,"<sid|name> <privilege...> add privileges for a user",{COMPL_NONE,COMPL_NONE}}, {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}}, {"acl",cmd_acl,"<file> show file ACL",{COMPL_NONE,COMPL_NONE}}, {"allinfo",cmd_allinfo,"<file> show all possible info about a file",{COMPL_NONE,COMPL_NONE}}, @@ -2587,7 +2587,7 @@ static struct {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}}, {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}}, {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}}, - {"delprivileges",cmd_delprivileges,"<sid|user> <privilege...> remove privileges for a user",{COMPL_NONE,COMPL_NONE}}, + {"delprivileges",cmd_delprivileges,"<sid|name> <privilege...> remove privileges for a user",{COMPL_NONE,COMPL_NONE}}, {"deltree",cmd_deltree,"<dir> delete a whole directory tree",{COMPL_REMOTE,COMPL_NONE}}, {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}}, {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}}, @@ -2597,7 +2597,7 @@ static struct {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}}, {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}}, {"link",cmd_link,"<src> <dest> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}}, - {"lookup",cmd_lookup,"<name|sid> show SID for name or name for SID",{COMPL_NONE,COMPL_NONE}}, + {"lookup",cmd_lookup,"<sid|name> show SID for name or name for SID",{COMPL_NONE,COMPL_NONE}}, {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}}, {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}}, {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}}, |