From: Alan T. DeKok Date: Wed, 19 Jan 2022 16:18:16 +0000 (-0500) Subject: typo X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5dc778b8dd1381bd524df8111cb2ab176d603e33;p=thirdparty%2Ffreeradius-server.git typo --- diff --git a/src/lib/unlang/xlat_expr.c b/src/lib/unlang/xlat_expr.c index 4ae60121ec..e122b36ba0 100644 --- a/src/lib/unlang/xlat_expr.c +++ b/src/lib/unlang/xlat_expr.c @@ -169,7 +169,7 @@ static xlat_action_t xlat_binary_op(TALLOC_CTX *ctx, fr_dcursor_t *out, b = fr_dlist_next(in, a); #ifdef __clang_analyzer__ - if (!a || !b) retunr XLAT_ACTION_FAIL; + if (!a || !b) return XLAT_ACTION_FAIL; #else fr_assert(a != NULL); fr_assert(b != NULL);