From: Yorgos Thessalonikefs Date: Mon, 13 Jan 2025 11:32:16 +0000 (+0100) Subject: - Fix typo. X-Git-Tag: release-1.23.0rc1~71 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=c3b5bff31183b204023bb9dbb74e4e9ab9ed256b;p=thirdparty%2Funbound.git - Fix typo. --- diff --git a/daemon/acl_list.c b/daemon/acl_list.c index bce55ebcd..362de0a2c 100644 --- a/daemon/acl_list.c +++ b/daemon/acl_list.c @@ -222,7 +222,7 @@ acl_interface_insert(struct acl_list* acl_interface, enum acl_access control) { struct acl_addr* node = acl_find_or_create(acl_interface, addr, addrlen, control); - node->is_inteface = 1; + node->is_interface = 1; return node; } @@ -809,7 +809,7 @@ log_acl_action(const char* action, struct sockaddr_storage* addr, verbose(VERB_ALGO, "%s query from %s port %d because of " "%s/%d %s%s", action, a, (int)port, n, acladdr->node.net, - acladdr->is_inteface?"(ACL on interface IP) ":"", + acladdr->is_interface?"(ACL on interface IP) ":"", acl_access_to_str(acl)); } else { verbose(VERB_ALGO, "%s query from %s port %d", action, a, diff --git a/daemon/acl_list.h b/daemon/acl_list.h index 5c34280b6..6e6e5e2e9 100644 --- a/daemon/acl_list.h +++ b/daemon/acl_list.h @@ -108,7 +108,7 @@ struct acl_addr { /** size of the tag_datas array */ size_t tag_datas_size; /* If the acl node is for an interface */ - int is_inteface; + int is_interface; /* view element, NULL if none */ struct view* view; };