diff options
author | Volker Lendecke <vlendec@samba.org> | 2004-04-18 20:22:31 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:51:16 -0500 |
commit | 7f00878fe607901ee25fec328553d00e114d4bf3 (patch) | |
tree | 30f613a13f256fffe4e90f154f1089f7116eb890 /source3/utils/net.c | |
parent | a329b70e1554a84773d2721b6a49aeac9048b6ff (diff) | |
download | samba-7f00878fe607901ee25fec328553d00e114d4bf3.tar.gz samba-7f00878fe607901ee25fec328553d00e114d4bf3.tar.xz samba-7f00878fe607901ee25fec328553d00e114d4bf3.zip |
r269: Patch from Krischan Jodies <kj@sernet.de>: Implement 'net rpc group delete'.
Volker
(This used to be commit ec321674961cc62c048b149ee19b6e36325c8eb3)
Diffstat (limited to 'source3/utils/net.c')
-rw-r--r-- | source3/utils/net.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/utils/net.c b/source3/utils/net.c index 4acb1e79b74..67b138a43be 100644 --- a/source3/utils/net.c +++ b/source3/utils/net.c @@ -66,6 +66,7 @@ int opt_long_list_entries = 0; int opt_reboot = 0; int opt_force = 0; int opt_port = 0; +int opt_verbose = 0; int opt_maxusers = -1; const char *opt_comment = ""; const char *opt_container = "cn=Users"; @@ -683,7 +684,7 @@ static struct functable net_func[] = { {"timeout", 't', POPT_ARG_INT, &opt_timeout}, {"machine-pass",'P', POPT_ARG_NONE, &opt_machine_pass}, {"myworkgroup", 'W', POPT_ARG_STRING, &opt_workgroup}, - + {"verbose", 'v', POPT_ARG_NONE, &opt_verbose}, /* Options for 'net groupmap set' */ {"local", 'L', POPT_ARG_NONE, &opt_localgroup}, {"domain", 'D', POPT_ARG_NONE, &opt_domaingroup}, |