From 6e216b19f06c00c332ee709e31d47fb4a9f6a687 Mon Sep 17 00:00:00 2001 From: rofl0r Date: Sat, 13 Feb 2021 17:57:56 +0000 Subject: [PATCH] acl: fix debug build --- src/acl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/acl.c b/src/acl.c index 9a1636a..1ef3c8d 100644 --- a/src/acl.c +++ b/src/acl.c @@ -191,7 +191,7 @@ static int check_numeric_acl (const struct acl_s *acl, uint8_t addr[IPV6_LEN]) uint8_t x, y; int i; - assert (acl && acl->h.type == ACL_NUMERIC); + assert (acl && acl->h.type == HST_NUMERIC); for (i = 0; i != IPV6_LEN; ++i) { x = addr[i] & acl->h.address.ip.mask[i];