From 8d3d7534f24e3d260ad49a7d1bc359d813675ae8 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 21 Dec 2004 03:29:09 +0000 Subject: r4303: a bit more consistent help on privileges commands in smbclient (This used to be commit 2d2e9e6373be153f991ee899e9d66cd3979e309f) --- source4/client/client.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source4/client') 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 \n"); + d_printf("lookup \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 \n"); + d_printf("addprivileges \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 \n"); + d_printf("delprivileges \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," add privileges for a user",{COMPL_NONE,COMPL_NONE}}, + {"addprivileges",cmd_addprivileges," add privileges for a user",{COMPL_NONE,COMPL_NONE}}, {"altname",cmd_altname," show alt name",{COMPL_NONE,COMPL_NONE}}, {"acl",cmd_acl," show file ACL",{COMPL_NONE,COMPL_NONE}}, {"allinfo",cmd_allinfo," show all possible info about a file",{COMPL_NONE,COMPL_NONE}}, @@ -2587,7 +2587,7 @@ static struct {"chmod",cmd_chmod," chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}}, {"chown",cmd_chown," chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}}, {"del",cmd_del," delete all matching files",{COMPL_REMOTE,COMPL_NONE}}, - {"delprivileges",cmd_delprivileges," remove privileges for a user",{COMPL_NONE,COMPL_NONE}}, + {"delprivileges",cmd_delprivileges," remove privileges for a user",{COMPL_NONE,COMPL_NONE}}, {"deltree",cmd_deltree," delete a whole directory tree",{COMPL_REMOTE,COMPL_NONE}}, {"dir",cmd_dir," list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}}, {"du",cmd_du," 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," create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}}, - {"lookup",cmd_lookup," show SID for name or name for SID",{COMPL_NONE,COMPL_NONE}}, + {"lookup",cmd_lookup," 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," list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}}, {"mask",cmd_select," mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}}, -- cgit