diff options
author | Gerald Carter <jerry@samba.org> | 2003-01-15 16:07:14 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-01-15 16:07:14 +0000 |
commit | 43e4cae106ebc581994dccbf1cc4c9c9559e3e8a (patch) | |
tree | 9321ad16d9eae20b4a269e1ad1b12448ce5e2385 /source3/utils/net_help.c | |
parent | 58fe4d9c20203f6f55c8e995402e156becb91b3e (diff) | |
download | samba-43e4cae106ebc581994dccbf1cc4c9c9559e3e8a.tar.gz samba-43e4cae106ebc581994dccbf1cc4c9c9559e3e8a.tar.bz2 samba-43e4cae106ebc581994dccbf1cc4c9c9559e3e8a.zip |
* removed unused variable from rpcclient code
* added container option to net command (patch from SuSE)
* Makefile patch for examples/VFS from SuSE
(This used to be commit 4a6d8280ea27ca7a6998219aacc4b15b1227a659)
Diffstat (limited to 'source3/utils/net_help.c')
-rw-r--r-- | source3/utils/net_help.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source3/utils/net_help.c b/source3/utils/net_help.c index fc0fdd0f09..782a530035 100644 --- a/source3/utils/net_help.c +++ b/source3/utils/net_help.c @@ -70,14 +70,14 @@ int net_help_user(int argc, const char **argv) "\n\tDelete specified user\n"); d_printf("\nnet [<method>] user INFO <name> [misc. options] [targets]"\ "\n\tList the domain groups of the specified user\n"); - d_printf("\nnet [<method>] user ADD <name> [password] "\ + d_printf("\nnet [<method>] user ADD <name> [password] [-c container] "\ "[-F user flags] [misc. options]"\ " [targets]\n\tAdd specified user\n"); net_common_methods_usage(argc, argv); net_common_flags_usage(argc, argv); - d_printf( - "\t-C or --comment=<comment>\tdescriptive comment (for add only)\n"); + d_printf("\t-C or --comment=<comment>\tdescriptive comment (for add only)\n"); + d_printf("\t-c or --container=<container>\tLDAP container, defaults to cn=Users (for add in ADS only)\n"); return -1; } @@ -88,12 +88,12 @@ int net_help_group(int argc, const char **argv) d_printf("net [<method>] group DELETE <name> "\ "[misc. options] [targets]"\ "\n\tDelete specified group\n"); - d_printf("\nnet [<method>] group ADD <name> [-C comment]"\ + d_printf("\nnet [<method>] group ADD <name> [-C comment] [-c container]"\ " [misc. options] [targets]\n\tCreate specified group\n"); net_common_methods_usage(argc, argv); net_common_flags_usage(argc, argv); - d_printf( - "\t-C or --comment=<comment>\tdescriptive comment (for add only)\n"); + d_printf("\t-C or --comment=<comment>\tdescriptive comment (for add only)\n"); + d_printf("\t-c or --container=<container>\tLDAP container, defaults to cn=Users (for add in ADS only)\n"); return -1; } |