Removed a closing bracket, left over after removing pack directives.

This commit is contained in:
likewise 2004-05-05 23:04:17 +00:00
parent 79110ba469
commit e2bc8e86e2

View File

@ -59,19 +59,22 @@ struct eth_hdr {
/** the ARP message */ /** the ARP message */
struct etharp_hdr { struct etharp_hdr {
/* Ethernet header */
struct eth_hdr ethhdr; struct eth_hdr ethhdr;
u16_t hwtype; u16_t hwtype;
u16_t proto; u16_t proto;
u16_t _hwlen_protolen; u16_t _hwlen_protolen;
u16_t opcode; u16_t opcode;
struct eth_addr shwaddr; struct eth_addr shwaddr;
/* assume 2-byte alignment */
struct ip_addr2 sipaddr; struct ip_addr2 sipaddr;
struct eth_addr dhwaddr; struct eth_addr dhwaddr;
/* assume 2-byte alignment */
struct ip_addr2 dipaddr; struct ip_addr2 dipaddr;
}; };
struct ethip_hdr { struct ethip_hdr {
struct eth_hdr eth); struct eth_hdr eth;
struct ip_hdr ip; struct ip_hdr ip;
}; };