diff options
Diffstat (limited to 'src/common/acl.h')
-rw-r--r-- | src/common/acl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/acl.h b/src/common/acl.h index 11ef191..616e72f 100644 --- a/src/common/acl.h +++ b/src/common/acl.h @@ -34,11 +34,11 @@ #include "common/sockaddr.h" /*! \brief ACL structure. */ -typedef list acl_t; +typedef list_t acl_t; /*! \brief Single ACL match. */ typedef struct acl_match { - node n; + node_t n; sockaddr_t addr; /*!< \brief Address for comparison. */ void *val; /*!< \brief Associated value (or NULL). */ } acl_match_t; |