summaryrefslogtreecommitdiff
path: root/source3/rpcclient
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:56:11 +0200
commitb7b08709434f8bedf7158e90724f45fbf9a15985 (patch)
tree588cf891dfec05006686e034a88a1efeed7fb9f0 /source3/rpcclient
parent24a933e7bda083e0be16f1092c1c103eceb99608 (diff)
downloadsamba-b7b08709434f8bedf7158e90724f45fbf9a15985.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/rpcclient')
-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;
}