diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-02-15 22:27:14 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-02-15 22:27:14 +0000 |
commit | d45bc8b630a44f2f167207dd0174c73b9f9ac6a6 (patch) | |
tree | 83dd4293afe27a66f24e5ca09f32d5038725d715 /usr.sbin/hostapd/parse.y | |
parent | fdd07aa3f09ae3ea6b739bfcd74b1d245493a287 (diff) |
no need for __packed, and it is even used wrong; from ragge
Diffstat (limited to 'usr.sbin/hostapd/parse.y')
-rw-r--r-- | usr.sbin/hostapd/parse.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/hostapd/parse.y b/usr.sbin/hostapd/parse.y index f20b2a56c80..49aed8155cb 100644 --- a/usr.sbin/hostapd/parse.y +++ b/usr.sbin/hostapd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.39 2008/10/17 13:02:55 henning Exp $ */ +/* $OpenBSD: parse.y,v 1.40 2009/02/15 22:27:13 deraadt Exp $ */ /* * Copyright (c) 2004, 2005, 2006 Reyk Floeter <reyk@openbsd.org> @@ -96,7 +96,7 @@ typedef struct { u_int8_t lladdr[IEEE80211_ADDR_LEN]; struct hostapd_table *table; u_int32_t flags; - } reflladdr __packed; + } reflladdr; struct { u_int16_t alg; u_int16_t transaction; |