From: Alan T. DeKok Date: Wed, 20 Jul 2022 15:44:13 +0000 (-0400) Subject: typo X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dce2954f9b22326ba0ece51c4726e7f899109a34;p=thirdparty%2Ffreeradius-server.git typo --- diff --git a/src/lib/unlang/interpret.c b/src/lib/unlang/interpret.c index 6c844750778..cab66687d94 100644 --- a/src/lib/unlang/interpret.c +++ b/src/lib/unlang/interpret.c @@ -1084,7 +1084,7 @@ void unlang_interpret_signal(request_t *request, fr_state_signal_t action) switch (action) { case FR_SIGNAL_CANCEL: unlang_interpret_request_stop(request); /* Stop gets the request in a consistent state */ - request->log.unlang_indent == 0; /* nothing unwinds the indentation stack */ + request->log.unlang_indent = 0; /* nothing unwinds the indentation stack */ unlang_interpret_request_done(request); /* Done signals the request is complete */ break;