diff options
| author | Brian Somers <brian@FreeBSD.org> | 2001-08-02 09:28:31 +0000 |
|---|---|---|
| committer | Brian Somers <brian@FreeBSD.org> | 2001-08-02 09:28:31 +0000 |
| commit | 2b5dcd2ffe73e5f6e2c749af2efb07cba3cfe75c (patch) | |
| tree | e6ddee2259f6b63d89cff12923b5ff548471b673 /sys/netgraph | |
| parent | f66116083c527535ef902da5326dca2dcc97ad35 (diff) | |
Notes
Diffstat (limited to 'sys/netgraph')
| -rw-r--r-- | sys/netgraph/ng_pppoe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netgraph/ng_pppoe.c b/sys/netgraph/ng_pppoe.c index 2378e7a0a08f..b97af26fbbd5 100644 --- a/sys/netgraph/ng_pppoe.c +++ b/sys/netgraph/ng_pppoe.c @@ -868,7 +868,7 @@ pppoe_start(sessp sp) struct { struct pppoe_tag hdr; union uniq data; - } uniqtag; + } __attribute ((packed)) uniqtag; /* * kick the state machine into starting up @@ -910,7 +910,7 @@ ng_pppoe_rcvdata(hook_p hook, item_p item) struct { struct pppoe_tag hdr; union uniq data; - } uniqtag; + } __attribute ((packed)) uniqtag; negp neg = NULL; struct mbuf *m; |
