From: Alan T. DeKok Date: Tue, 5 Sep 2023 14:18:53 +0000 (-0400) Subject: pass in the correct operator X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9506be509f8e5dc6edc5c60597469e2e38a32b28;p=thirdparty%2Ffreeradius-server.git pass in the correct operator --- diff --git a/src/lib/util/calc.c b/src/lib/util/calc.c index b413a178d4a..fbe782352ee 100644 --- a/src/lib/util/calc.c +++ b/src/lib/util/calc.c @@ -1945,7 +1945,7 @@ int fr_value_calc_binary_op(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_type_t hint break; default: - return handle_result(a->type, T_LSHIFT, ERR_INVALID); + return handle_result(a->type, op, ERR_INVALID); } } while (0);