1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

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
This commit is contained in:
Guenther Deschner 2019-11-26 13:10:47 +01:00 committed by Andreas Schneider
parent 97d43cf698
commit 0385496087

View File

@ -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);