Show
Ignore:
Timestamp:
02/06/06 21:20:57 (6 years ago)
Author:
mrenzmann
Message:

Yet another set of some minor code cleanup changes, again with no
functional changes.

Signed-off-by: Michael Renzmann <mrenzmann@otaku42.de>

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/net80211/ieee80211_acl.c

    r1426 r1443  
    6666 
    6767struct acl { 
    68         TAILQ_ENTRY(acl)       acl_list; 
    69         LIST_ENTRY(acl)                acl_hash; 
    70         u_int8_t                       acl_macaddr[IEEE80211_ADDR_LEN]; 
     68        TAILQ_ENTRY(acl) acl_list; 
     69        LIST_ENTRY(acl) acl_hash; 
     70        u_int8_t acl_macaddr[IEEE80211_ADDR_LEN]; 
    7171}; 
    7272struct aclstate { 
    73         acl_lock_t             as_lock; 
    74         int                    as_policy; 
    75         TAILQ_HEAD(, acl)      as_list;       /* list of all ACL's */ 
    76         ATH_LIST_HEAD(, acl)   as_hash[ACL_HASHSIZE]; 
     73        acl_lock_t as_lock; 
     74        int as_policy; 
     75        TAILQ_HEAD(, acl) as_list;    /* list of all ACL's */ 
     76        ATH_LIST_HEAD(, acl) as_hash[ACL_HASHSIZE]; 
    7777}; 
    7878