From ad1e5fdd96aa2c2d42b14a55c88d39ec0b927014 Mon Sep 17 00:00:00 2001 From: Luke Leighton Date: Sat, 27 Nov 1999 22:53:28 +0000 Subject: moved browser command brsinfo over to new abstracted connection (This used to be commit 601d217f44ea1ce3735b9267b6f829b472a982b4) --- source3/rpcclient/cmd_brs.c | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) (limited to 'source3/rpcclient') diff --git a/source3/rpcclient/cmd_brs.c b/source3/rpcclient/cmd_brs.c index ff8e1cf66a..ca1dbe036c 100644 --- a/source3/rpcclient/cmd_brs.c +++ b/source3/rpcclient/cmd_brs.c @@ -33,8 +33,6 @@ extern int DEBUGLEVEL; #define DEBUG_TESTING -extern struct cli_state *smb_cli; - extern FILE* out_hnd; @@ -43,7 +41,6 @@ Browser get info query ****************************************************************************/ void cmd_brs_query_info(struct client_info *info, int argc, char *argv[]) { - uint16 nt_pipe_fnum; fstring dest_brs; BRS_INFO_100 ctr; uint32 info_level = 100; @@ -64,17 +61,8 @@ void cmd_brs_query_info(struct client_info *info, int argc, char *argv[]) DEBUG(4,("cmd_brs_query_info: server:%s info level: %d\n", dest_brs, info_level)); - DEBUG(5, ("cmd_brs_query_info: smb_cli->fd:%d\n", smb_cli->fd)); - - /* open LSARPC session. */ - res = res ? cli_nt_session_open(smb_cli, PIPE_BROWSER, &nt_pipe_fnum) : False; - /* send info level: receive requested info. hopefully. */ - res = res ? do_brs_query_info(smb_cli, nt_pipe_fnum, - dest_brs, info_level, &ctr) : False; - - /* close the session */ - cli_nt_session_close(smb_cli, nt_pipe_fnum); + res = res ? brs_query_info( dest_brs, info_level, &ctr) : False; if (res) { -- cgit