From: Arran Cudbard-Bell Date: Fri, 24 Nov 2023 15:52:19 +0000 (-0600) Subject: Fix typo X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=963ead7fb9624d25b443a1b6f709c4a7bc7cfa93;p=thirdparty%2Ffreeradius-server.git Fix typo --- diff --git a/src/lib/unlang/xlat_expr.c b/src/lib/unlang/xlat_expr.c index 49fb2809596..6c0ded6b01a 100644 --- a/src/lib/unlang/xlat_expr.c +++ b/src/lib/unlang/xlat_expr.c @@ -2461,7 +2461,7 @@ static fr_slen_t tokenize_field(xlat_exp_head_t *head, xlat_exp_t **out, fr_sbuf p = vpt->name + talloc_array_length(vpt->name) - 2; if ((*p == ':') && fr_sbuff_is_char(&our_in, '-')) { fr_sbuff_set(&our_in, fr_sbuff_current(&our_in) - 2); - fr_strerror_const("Alternation is no longer supported. Use '%{a && b}' instead of '%{a:-b}'"); + fr_strerror_const("Alternation is no longer supported. Use '%{a || b}' instead of '%{a:-b}'"); goto error; } }