Make the "invalid group" error show up with default verbosity level
This commit is contained in:
parent
d113aa91ca
commit
8e888179e1
1 changed files with 1 additions and 1 deletions
|
@ -311,7 +311,7 @@ wpa_supplicant_ctrl_iface_init(struct wpa_supplicant *wpa_s)
|
||||||
/* Group name not found - try to parse this as gid */
|
/* Group name not found - try to parse this as gid */
|
||||||
gid = strtol(gid_str, &endp, 10);
|
gid = strtol(gid_str, &endp, 10);
|
||||||
if (*gid_str == '\0' || *endp != '\0') {
|
if (*gid_str == '\0' || *endp != '\0') {
|
||||||
wpa_printf(MSG_DEBUG, "CTRL: Invalid group "
|
wpa_printf(MSG_ERROR, "CTRL: Invalid group "
|
||||||
"'%s'", gid_str);
|
"'%s'", gid_str);
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue