1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-09 08:58:35 +03:00

Add framework for samtest commands

(This used to be commit f1021cbc557bfa0078e932a8268c5c9adcae0ae8)
This commit is contained in:
Jelmer Vernooij 2002-09-20 16:59:48 +00:00
parent 3c1c9ac228
commit 696fedc7ad
2 changed files with 169 additions and 932 deletions

File diff suppressed because it is too large Load Diff

View File

@ -100,7 +100,7 @@ static NTSTATUS cmd_help(struct sam_context *sam, TALLOC_CTX *mem_ctx,
while(tmp_set->name) {
printf("%15s\t\t%s\n", tmp_set->name,
printf("%20s\t%s\n", tmp_set->name,
tmp_set->description ? tmp_set->description:
"");
@ -157,10 +157,16 @@ static struct cmd_set separator_command[] = {
/*extern struct cmd_set sam_commands[];*/
extern struct cmd_set sam_commands[];
extern struct cmd_set sam_general_commands[];
extern struct cmd_set sam_domain_commands[];
extern struct cmd_set sam_account_commands[];
extern struct cmd_set sam_group_commands[];
static struct cmd_set *samtest_command_list[] = {
samtest_commands,
sam_commands,
sam_general_commands,
sam_domain_commands,
sam_account_commands,
sam_group_commands,
NULL
};