From: Alan T. DeKok Date: Sat, 19 Mar 2022 14:37:03 +0000 (-0400) Subject: ignore exact flag for now X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=472fa9d4e303c36ca1be5fc9b2cab3dda4f9b75f;p=thirdparty%2Ffreeradius-server.git ignore exact flag for now --- diff --git a/src/protocols/dhcpv4/decode.c b/src/protocols/dhcpv4/decode.c index f86a28e343e..71bcf33f164 100644 --- a/src/protocols/dhcpv4/decode.c +++ b/src/protocols/dhcpv4/decode.c @@ -220,7 +220,10 @@ static ssize_t decode_value(TALLOC_CTX *ctx, fr_pair_list_t *out, fr_dict_attr_t needs = 1 + ((*p + 0x07) >> 3); if (data_len < needs) goto raw; + +#if 0 if (exact && (data_len > needs)) goto raw; +#endif vp->vp_ip.prefix = *p;