diff options
author | Michael Brown | 2012-02-21 13:25:06 +0100 |
---|---|---|
committer | Michael Brown | 2012-02-21 13:42:37 +0100 |
commit | a8756182c362866e88fedca812500c24420115f8 (patch) | |
tree | 35e39532a54f3a4783bfc675fa984596ce0f0697 /src/net/80211 | |
parent | [udp] Propagate transmission errors to UDP interface users (diff) | |
download | ipxe-a8756182c362866e88fedca812500c24420115f8.tar.gz ipxe-a8756182c362866e88fedca812500c24420115f8.tar.xz ipxe-a8756182c362866e88fedca812500c24420115f8.zip |
[802.11] Add missing #include <string.h>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/net/80211')
-rw-r--r-- | src/net/80211/wpa_ccmp.c | 1 | ||||
-rw-r--r-- | src/net/80211/wpa_psk.c | 1 | ||||
-rw-r--r-- | src/net/80211/wpa_tkip.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/src/net/80211/wpa_ccmp.c b/src/net/80211/wpa_ccmp.c index 89bb36fd..38fd199f 100644 --- a/src/net/80211/wpa_ccmp.c +++ b/src/net/80211/wpa_ccmp.c @@ -18,6 +18,7 @@ FILE_LICENCE ( GPL2_OR_LATER ); +#include <string.h> #include <ipxe/net80211.h> #include <ipxe/crypto.h> #include <ipxe/hmac.h> diff --git a/src/net/80211/wpa_psk.c b/src/net/80211/wpa_psk.c index 780738e7..c88f556e 100644 --- a/src/net/80211/wpa_psk.c +++ b/src/net/80211/wpa_psk.c @@ -18,6 +18,7 @@ FILE_LICENCE ( GPL2_OR_LATER ); +#include <string.h> #include <ipxe/net80211.h> #include <ipxe/sha1.h> #include <ipxe/wpa.h> diff --git a/src/net/80211/wpa_tkip.c b/src/net/80211/wpa_tkip.c index 0a94df07..8bb3e5aa 100644 --- a/src/net/80211/wpa_tkip.c +++ b/src/net/80211/wpa_tkip.c @@ -18,6 +18,7 @@ FILE_LICENCE ( GPL2_OR_LATER ); +#include <string.h> #include <ipxe/net80211.h> #include <ipxe/crypto.h> #include <ipxe/hmac.h> |