From: Jouni Malinen Date: Thu, 6 Mar 2008 20:49:46 +0000 (+0200) Subject: Make the "invalid group" error show up with default verbosity level X-Git-Tag: hostap_0_6_4~123 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8e888179e1dcfc53e6770be53226668a4137ee5f;p=thirdparty%2Fhostap.git Make the "invalid group" error show up with default verbosity level --- diff --git a/wpa_supplicant/ctrl_iface_unix.c b/wpa_supplicant/ctrl_iface_unix.c index 2956899cc..bf6328e75 100644 --- a/wpa_supplicant/ctrl_iface_unix.c +++ b/wpa_supplicant/ctrl_iface_unix.c @@ -311,7 +311,7 @@ wpa_supplicant_ctrl_iface_init(struct wpa_supplicant *wpa_s) /* Group name not found - try to parse this as gid */ gid = strtol(gid_str, &endp, 10); if (*gid_str == '\0' || *endp != '\0') { - wpa_printf(MSG_DEBUG, "CTRL: Invalid group " + wpa_printf(MSG_ERROR, "CTRL: Invalid group " "'%s'", gid_str); goto fail; }