- Fix typo.

This commit is contained in:
Yorgos Thessalonikefs 2025-01-13 12:32:16 +01:00
parent 62a0e03801
commit c3b5bff311
2 changed files with 3 additions and 3 deletions

View file

@ -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,

View file

@ -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;
};