Preparations for hostapd/wpa_supplicant 0.4.10 release

Pavel Roskin proski
Tue Jan 2 14:05:02 PST 2007


Hi, Jouni!

On Mon, 2007-01-01 at 18:21 -0800, Jouni Malinen wrote:
> I've merged most of the bug fixes from 0.5.x to 0.4.x
> (hostap_0_4_branch) in preparation for a bug fix releases from the (now
> old) stable branch and I would hope to release 0.4.10 after some
> testing. If you are interested in helping with this, now would be a good
> moment to test the latest snapshot (see links below) and check whether
> there is any regression from 0.4.9.

There is a compiler warning in hostapd on x86_86 in driver_madwifi.c.
This patch ports the fix from hostapd 0.5.x.

--- driver_madwifi.c
+++ driver_madwifi.c
@@ -480,9 +480,9 @@ madwifi_set_key(void *priv, const char *
 	ret = set80211priv(priv, IEEE80211_IOCTL_SETKEY, &wk, sizeof(wk));
 	if (ret < 0) {
 		wpa_printf(MSG_DEBUG, "%s: Failed to set key (addr " MACSTR
-			   " key_idx %d alg '%s' key_len %d)",
+			   " key_idx %d alg '%s' key_len %lu)",
 			   __func__, MAC2STR(wk.ik_macaddr), key_idx, alg,
-			   key_len);
+			   (unsigned long) key_len);
 	}
 
 	return ret;


Apart from that, I don't see any problems at the compile time in hostapd
and wpa_supplicant.

-- 
Regards,
Pavel Roskin






More information about the Hostap mailing list