Parcourir la source

Interworking: Add verbose error message on cred block parsing errors

Signed-hostap: Jouni Malinen <jouni@qca.qualcomm.com>
Jouni Malinen il y a 13 ans
Parent
commit
7d86e53747
1 fichiers modifiés avec 4 ajouts et 1 suppressions
  1. 4 1
      wpa_supplicant/config.c

+ 4 - 1
wpa_supplicant/config.c

@@ -2223,8 +2223,11 @@ int wpa_config_set_cred(struct wpa_cred *cred, const char *var,
 	}
 
 	val = wpa_config_parse_string(value, &len);
-	if (val == NULL)
+	if (val == NULL) {
+		wpa_printf(MSG_ERROR, "Line %d: invalid field '%s' string "
+			   "value '%s'.", line, var, value);
 		return -1;
+	}
 
 	if (os_strcmp(var, "realm") == 0) {
 		os_free(cred->realm);