]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
typo
authorAlan T. DeKok <aland@freeradius.org>
Wed, 19 Jan 2022 16:18:16 +0000 (11:18 -0500)
committerAlan T. DeKok <aland@freeradius.org>
Wed, 19 Jan 2022 16:18:16 +0000 (11:18 -0500)
src/lib/unlang/xlat_expr.c

index 4ae60121ec0910ffb3ae2d3f8946af3318d4a52c..e122b36ba016e4e8f5e285dc8641484822e21463 100644 (file)
@@ -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);