From: Alan T. DeKok Date: Thu, 14 Sep 2017 23:55:11 +0000 (-0400) Subject: no unused variable for you X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=171fb635bc7d44af18d547d2fee98fd5cc183304;p=thirdparty%2Ffreeradius-server.git no unused variable for you --- diff --git a/src/main/unlang_interpret.c b/src/main/unlang_interpret.c index aff6c9289e9..63581791fb6 100644 --- a/src/main/unlang_interpret.c +++ b/src/main/unlang_interpret.c @@ -744,7 +744,9 @@ static unlang_action_t unlang_call(REQUEST *request, unlang_stack_t *stack, /* * @todo - handle other return codes later. */ - rad_assert(final == FR_IO_REPLY); + if (final != FR_IO_REPLY) { + RDEBUG("ignoring unknown return code... no yield for you!"); + } request->log.unlang_indent = indent; request->async->process = unlang_process_continue;