From: Jouni Malinen Date: Sat, 30 Jul 2011 21:51:34 +0000 (+0300) Subject: Clarify hostapd error message on unsupported hw_mode value X-Git-Tag: hostap-1-bp~282 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=93ac240496e9d9e949e38d6e3f29f4b5df342670;p=thirdparty%2Fhostap.git Clarify hostapd error message on unsupported hw_mode value --- diff --git a/src/ap/hw_features.c b/src/ap/hw_features.c index 86f681171..5c71c9a33 100644 --- a/src/ap/hw_features.c +++ b/src/ap/hw_features.c @@ -630,7 +630,8 @@ int hostapd_select_hw_mode(struct hostapd_iface *iface) hostapd_logger(iface->bss[0], NULL, HOSTAPD_MODULE_IEEE80211, HOSTAPD_LEVEL_WARNING, "Hardware does not support configured mode " - "(%d)", (int) iface->conf->hw_mode); + "(%d) (hw_mode in hostapd.conf)", + (int) iface->conf->hw_mode); return -2; }