summaryrefslogtreecommitdiff
path: root/source3/winbindd
diff options
context:
space:
mode:
authorGuenther Deschner <gd@samba.org>2019-11-26 13:10:47 +0100
committerAndreas Schneider <asn@cryptomilk.org>2019-11-26 14:14:51 +0000
commit038549608709d4a1b7a1650041a57d201fb6a643 (patch)
tree54c4590453694a62fad45d73acf3a4d12de25cf1 /source3/winbindd
parent97d43cf6982a4bc1bbba70997990b017b6bca213 (diff)
downloadsamba-038549608709d4a1b7a1650041a57d201fb6a643.tar.gz
s3:winbind: Also set the cmd name for bool dispatch table
Signed-off-by: Guenther Deschner <gd@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org> Autobuild-User(master): Andreas Schneider <asn@cryptomilk.org> Autobuild-Date(master): Tue Nov 26 14:14:51 UTC 2019 on sn-devel-184
Diffstat (limited to 'source3/winbindd')
-rw-r--r--source3/winbindd/winbindd.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/winbindd/winbindd.c b/source3/winbindd/winbindd.c
index 59b4ffc684b..bb66321ce72 100644
--- a/source3/winbindd/winbindd.c
+++ b/source3/winbindd/winbindd.c
@@ -764,6 +764,8 @@ static struct tevent_req *process_request_send(
ok = false;
if (i < ARRAY_SIZE(bool_dispatch_table)) {
+ cli_state->cmd_name = bool_dispatch_table[i].cmd_name;
+
DBG_DEBUG("process_request: request fn %s\n",
bool_dispatch_table[i].cmd_name);
ok = bool_dispatch_table[i].fn(cli_state);