From 785022eb47e56032c8257cb39e79d367889f9ca1 Mon Sep 17 00:00:00 2001 From: christos Date: Thu, 25 May 2006 03:02:25 +0000 Subject: [PATCH] Coverity CID 2984: Static array overrun. --- usr.sbin/wpa/hostapd/driver_netbsd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/wpa/hostapd/driver_netbsd.c b/usr.sbin/wpa/hostapd/driver_netbsd.c index 2b414f3f61c9..8647ecd87580 100644 --- a/usr.sbin/wpa/hostapd/driver_netbsd.c +++ b/usr.sbin/wpa/hostapd/driver_netbsd.c @@ -133,7 +133,7 @@ static int bsd_configure_wpa(struct bsd_driver_data *drv) { static const char *ciphernames[] = - { "WEP", "TKIP", "AES-OCB", "AES-CCM", "CKIP", "NONE" }; + { "WEP", "TKIP", "AES-OCB", "AES-CCM", "*BAD*", "CKIP", "NONE" }; hostapd *hapd = drv->hapd; struct hostapd_config *conf = hapd->conf; int v;