diff options
author | Luke Leighton <lkcl@samba.org> | 1999-11-22 19:02:39 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-11-22 19:02:39 +0000 |
commit | aa12f3e0e922f42318b71c601cba08a6c96ff486 (patch) | |
tree | f062d83dcd5080ef3a1ff975608959c59247ed9e /source3/rpcclient/cmd_lsarpc.c | |
parent | 32b9508d066f002e778873edc19266a6d897f922 (diff) | |
download | samba-aa12f3e0e922f42318b71c601cba08a6c96ff486.tar.gz samba-aa12f3e0e922f42318b71c601cba08a6c96ff486.tar.bz2 samba-aa12f3e0e922f42318b71c601cba08a6c96ff486.zip |
okay :) all cmd_() functions now take int argc, char **argv :) that
means that some commands need more work, as they still use next_token(),
the use of which i wish to avoid.
plus, i was getting fed up of the poor command-line processing in some
of these commands. i'm starting to need getopt() in them, especially
in samsetuser.
WARNING: only cmd_samr has been modded to use getopt() so far! reg
commands won't work, esp.
(This used to be commit 9a1efa03c8bb86c9b7e73f102a9d48fb6a57a523)
Diffstat (limited to 'source3/rpcclient/cmd_lsarpc.c')
-rw-r--r-- | source3/rpcclient/cmd_lsarpc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/rpcclient/cmd_lsarpc.c b/source3/rpcclient/cmd_lsarpc.c index 53ffb24cfd..079cd803ea 100644 --- a/source3/rpcclient/cmd_lsarpc.c +++ b/source3/rpcclient/cmd_lsarpc.c @@ -40,7 +40,7 @@ extern int smb_tidx; /**************************************************************************** nt enumerate trusted domains ****************************************************************************/ -void cmd_lsa_enum_trust_dom(struct client_info *info) +void cmd_lsa_enum_trust_dom(struct client_info *info, int argc, char *argv[]) { uint16 nt_pipe_fnum; fstring srv_name; @@ -106,7 +106,7 @@ void cmd_lsa_enum_trust_dom(struct client_info *info) /**************************************************************************** nt lsa query ****************************************************************************/ -void cmd_lsa_query_info(struct client_info *info) +void cmd_lsa_query_info(struct client_info *info, int argc, char *argv[]) { uint16 nt_pipe_fnum; fstring srv_name; @@ -188,7 +188,7 @@ void cmd_lsa_query_info(struct client_info *info) /**************************************************************************** lookup names ****************************************************************************/ -void cmd_lsa_lookup_names(struct client_info *info) +void cmd_lsa_lookup_names(struct client_info *info, int argc, char *argv[]) { uint16 nt_pipe_fnum; fstring temp; @@ -279,7 +279,7 @@ void cmd_lsa_lookup_names(struct client_info *info) /**************************************************************************** lookup sids ****************************************************************************/ -void cmd_lsa_lookup_sids(struct client_info *info) +void cmd_lsa_lookup_sids(struct client_info *info, int argc, char *argv[]) { uint16 nt_pipe_fnum; fstring temp; @@ -376,7 +376,7 @@ void cmd_lsa_lookup_sids(struct client_info *info) /**************************************************************************** nt lsa query ****************************************************************************/ -void cmd_lsa_query_secret(struct client_info *info) +void cmd_lsa_query_secret(struct client_info *info, int argc, char *argv[]) { uint16 nt_pipe_fnum; fstring srv_name; |