summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorChristof Schmitt <cs@samba.org>2018-04-24 12:18:49 -0700
committerKarolin Seeger <kseeger@samba.org>2018-05-07 09:57:26 +0200
commitcfbcd62a54b07a7fc7932eef3526dd33f8aa5a15 (patch)
treecb9a2dea8b60fbcb81db66de3577c5515edea915 /source3
parent1f5faf4424986178c94f941fb19c6329ec9fdd92 (diff)
downloadsamba-cfbcd62a54b07a7fc7932eef3526dd33f8aa5a15.tar.gz
rpcclient: Print number of entries for NetSessEnum
BUG: https://bugzilla.samba.org/show_bug.cgi?id=13407 Signed-off-by: Christof Schmitt <cs@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> (cherry picked from commit 501819fa9e7926c2f54cb92d508ac0e8437fd476)
Diffstat (limited to 'source3')
-rw-r--r--source3/rpcclient/cmd_srvsvc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/rpcclient/cmd_srvsvc.c b/source3/rpcclient/cmd_srvsvc.c
index e7929e7259c..f78fb9a135d 100644
--- a/source3/rpcclient/cmd_srvsvc.c
+++ b/source3/rpcclient/cmd_srvsvc.c
@@ -883,6 +883,8 @@ static WERROR cmd_srvsvc_net_sess_enum(struct rpc_pipe_client *cli,
goto done;
}
+ d_printf("Received %d entries.\n", total_entries);
+
done:
return result;
}