From: Alan T. DeKok Date: Fri, 1 May 2020 20:11:36 +0000 (-0400) Subject: add missing argument X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5c933476c1935dd555cb5cf2891395eebee83f13;p=thirdparty%2Ffreeradius-server.git add missing argument --- diff --git a/src/modules/rlm_exec/rlm_exec.c b/src/modules/rlm_exec/rlm_exec.c index 310a08e92cc..9e8865643d9 100644 --- a/src/modules/rlm_exec/rlm_exec.c +++ b/src/modules/rlm_exec/rlm_exec.c @@ -364,6 +364,9 @@ static rlm_rcode_t CC_HINT(nonnull) mod_exec_dispatch(void *instance, UNUSED voi return RLM_MODULE_FAIL; } + /* + * Do the asynchronous xlat expansion. + */ if (!inst->wait) { fr_value_box_t *box; @@ -451,7 +454,7 @@ static rlm_rcode_t CC_HINT(nonnull) mod_exec_async(void *instance, UNUSED void * box = talloc_zero(request, fr_value_box_t *); - return unlang_module_yield_to_tmpl(box, box, request, inst->tmpl, exec_resume, NULL, box); + return unlang_module_yield_to_tmpl(box, box, request, inst->tmpl, NULL, exec_resume, NULL, box); } /*