]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Fix typo.
authorYorgos Thessalonikefs <yorgos@nlnetlabs.nl>
Mon, 13 Jan 2025 11:32:16 +0000 (12:32 +0100)
committerYorgos Thessalonikefs <yorgos@nlnetlabs.nl>
Mon, 13 Jan 2025 11:32:16 +0000 (12:32 +0100)
daemon/acl_list.c
daemon/acl_list.h

index bce55ebcd091af86a1d847ebf4510b487689a57d..362de0a2c6f886c4e6ca937b54659f966472c813 100644 (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,
index 5c34280b6ab653847e12e45d5bf6ad78bc6926fd..6e6e5e2e952a47cdf8d7dc792b7fb5eb707c7bc6 100644 (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;
 };