From: Jouni Malinen Date: Sun, 3 Nov 2013 18:12:36 +0000 (+0200) Subject: hostapd: Use correct wpa_printf verbosity level for message X-Git-Tag: hostap_2_1~642 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fee947bfc026745f25f08e17c108bd7823b6cfa4;p=thirdparty%2Fhostap.git hostapd: Use correct wpa_printf verbosity level for message This configuration file message is informative and MSG_INFO should be used instead of MSG_ERROR. Signed-hostap: Jouni Malinen --- diff --git a/src/ap/hostapd.c b/src/ap/hostapd.c index f99ee0c3d..80452a8c7 100644 --- a/src/ap/hostapd.c +++ b/src/ap/hostapd.c @@ -1369,7 +1369,7 @@ hostapd_interface_init_bss(struct hapd_interfaces *interfaces, const char *phy, } } - wpa_printf(MSG_ERROR, "Configuration file: %s (phy %s)%s", + wpa_printf(MSG_INFO, "Configuration file: %s (phy %s)%s", config_fname, phy, iface ? "" : " --> new PHY"); if (iface) { struct hostapd_config *conf;