summaryrefslogtreecommitdiff
path: root/addrtoname.c
diff options
context:
space:
mode:
Diffstat (limited to 'addrtoname.c')
-rw-r--r--addrtoname.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/addrtoname.c b/addrtoname.c
index 39b4a241..ce812078 100644
--- a/addrtoname.c
+++ b/addrtoname.c
@@ -84,7 +84,7 @@
#define NEED_NETINET_IF_ETHER_H
#else /* HAVE_STRUCT_ETHER_ADDR */
struct ether_addr {
- unsigned char ether_addr_octet[6];
+ unsigned char ether_addr_octet[MAC_ADDR_LEN];
};
#endif /* HAVE_STRUCT_ETHER_ADDR */
#endif /* what declares ether_ntohost() */
@@ -927,7 +927,7 @@ init_protoidarray(netdissect_options *ndo)
}
static const struct etherlist {
- const u_char addr[6];
+ const u_char addr[MAC_ADDR_LEN];
const char *name;
} etherlist[] = {
{{ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }, "Broadcast" },