From: Guenther Deschner Date: Tue, 26 Nov 2019 12:10:47 +0000 (+0100) Subject: s3:winbind: Also set the cmd name for bool dispatch table X-Git-Tag: ldb-2.1.0~611 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=038549608709d4a1b7a1650041a57d201fb6a643;p=thirdparty%2Fsamba.git s3:winbind: Also set the cmd name for bool dispatch table Signed-off-by: Guenther Deschner Reviewed-by: Andreas Schneider Autobuild-User(master): Andreas Schneider Autobuild-Date(master): Tue Nov 26 14:14:51 UTC 2019 on sn-devel-184 --- 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);