diff options
author | Günther Deschner <gd@samba.org> | 2004-12-20 11:05:54 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:53:41 -0500 |
commit | 2da4456df9509d710a5e08d28ea009c72e572c1a (patch) | |
tree | e78d50c3edf7c9046cb0d0c39523c1202e9c6b63 | |
parent | 3c11b0310060bc5143fdc64cb4eb3fbc691eb53d (diff) | |
download | samba-2da4456df9509d710a5e08d28ea009c72e572c1a.tar.gz samba-2da4456df9509d710a5e08d28ea009c72e572c1a.tar.bz2 samba-2da4456df9509d710a5e08d28ea009c72e572c1a.zip |
r4285: Allow -v or -l for displaying verbose groupmap-listing as well as
"verbose".
Guenther
(This used to be commit 0760d07b4c6f15489bea2f0fb4f1b0084bd62301)
-rw-r--r-- | source3/utils/net_groupmap.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/utils/net_groupmap.c b/source3/utils/net_groupmap.c index b2d96041dc..c6391a65fe 100644 --- a/source3/utils/net_groupmap.c +++ b/source3/utils/net_groupmap.c @@ -113,6 +113,9 @@ static int net_groupmap_list(int argc, const char **argv) int i; fstring ntgroup = ""; fstring sid_string = ""; + + if (opt_verbose || opt_long_list_entries) + long_list = True; /* get the options */ for ( i=0; i<argc; i++ ) { |