]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
use correct enum value
authorAlan T. DeKok <aland@freeradius.org>
Fri, 13 Oct 2017 13:53:13 +0000 (09:53 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Fri, 13 Oct 2017 13:53:13 +0000 (09:53 -0400)
src/main/unlang_interpret.c

index 0f0c8dda730a771a8566b8d4683defda7677e3bb..9221ff4ab19f258e7a56f427b7c92b10dd7abae9 100644 (file)
@@ -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;