From: Alan T. DeKok Date: Fri, 13 Oct 2017 13:53:13 +0000 (-0400) Subject: use correct enum value X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=244d139aa98486dc2c6034d6c1e22dc46e2b511b;p=thirdparty%2Ffreeradius-server.git use correct enum value --- diff --git a/src/main/unlang_interpret.c b/src/main/unlang_interpret.c index 0f0c8dda730..9221ff4ab19 100644 --- a/src/main/unlang_interpret.c +++ b/src/main/unlang_interpret.c @@ -1142,7 +1142,7 @@ static void unlang_parallel_signal(UNUSED REQUEST *request, UNUSED void *instanc /* * If we're done, also free the children. */ - if (action == FR_IO_ACTION_DONE) { + if (action == FR_ACTION_DONE) { talloc_free(state->children[i].child); state->children[i].child = NULL; state->children[i].state = CHILD_DONE;