diff options
author | Tim Potter <tpot@samba.org> | 2001-03-28 05:01:54 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-03-28 05:01:54 +0000 |
commit | 7a1f5c517b4bd003d962f212baaec78a7968db0d (patch) | |
tree | ab981eadadbd8ac69c0493eb35a278eba9a6e258 | |
parent | a6d350881c5e366d9a8d3d812cb85e0d8c2dc5d1 (diff) | |
download | samba-7a1f5c517b4bd003d962f212baaec78a7968db0d.tar.gz samba-7a1f5c517b4bd003d962f212baaec78a7968db0d.tar.bz2 samba-7a1f5c517b4bd003d962f212baaec78a7968db0d.zip |
Changed usage message for query_groupmem and query_usergroups as they don't
convert names to rids yet.
(This used to be commit cea13dff759dfb7efb5d2a248dd77905e16b1605)
-rw-r--r-- | source3/rpcclient/cmd_samr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/rpcclient/cmd_samr.c b/source3/rpcclient/cmd_samr.c index 908245f5dc..ca9469aede 100644 --- a/source3/rpcclient/cmd_samr.c +++ b/source3/rpcclient/cmd_samr.c @@ -307,7 +307,7 @@ static uint32 cmd_samr_query_usergroups(struct cli_state *cli, int argc, char ** fstring server; if (argc != 2) { - printf("Usage: %s rid/name\n", argv[0]); + printf("Usage: %s rid\n", argv[0]); return 0; } @@ -384,7 +384,7 @@ static uint32 cmd_samr_query_groupmem(struct cli_state *cli, int argc, char **ar fstring server; if (argc != 2) { - printf("Usage: %s rid/name\n", argv[0]); + printf("Usage: %s rid\n", argv[0]); return 0; } |