Fix compilation issues with CONFIG_NO_CONFIG_WRITE=y
Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
138bf11852
commit
954f03aab2
1 changed files with 8 additions and 0 deletions
|
@ -1296,6 +1296,7 @@ static int wpa_config_parse_eap(const struct parse_data *data,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef NO_CONFIG_WRITE
|
||||||
static char * wpa_config_write_eap(const struct parse_data *data,
|
static char * wpa_config_write_eap(const struct parse_data *data,
|
||||||
struct wpa_ssid *ssid)
|
struct wpa_ssid *ssid)
|
||||||
{
|
{
|
||||||
|
@ -1329,6 +1330,7 @@ static char * wpa_config_write_eap(const struct parse_data *data,
|
||||||
|
|
||||||
return buf;
|
return buf;
|
||||||
}
|
}
|
||||||
|
#endif /* NO_CONFIG_WRITE */
|
||||||
|
|
||||||
|
|
||||||
static int wpa_config_parse_password(const struct parse_data *data,
|
static int wpa_config_parse_password(const struct parse_data *data,
|
||||||
|
@ -1411,6 +1413,7 @@ static int wpa_config_parse_password(const struct parse_data *data,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef NO_CONFIG_WRITE
|
||||||
static char * wpa_config_write_password(const struct parse_data *data,
|
static char * wpa_config_write_password(const struct parse_data *data,
|
||||||
struct wpa_ssid *ssid)
|
struct wpa_ssid *ssid)
|
||||||
{
|
{
|
||||||
|
@ -1444,6 +1447,7 @@ static char * wpa_config_write_password(const struct parse_data *data,
|
||||||
|
|
||||||
return buf;
|
return buf;
|
||||||
}
|
}
|
||||||
|
#endif /* NO_CONFIG_WRITE */
|
||||||
#endif /* IEEE8021X_EAPOL */
|
#endif /* IEEE8021X_EAPOL */
|
||||||
|
|
||||||
|
|
||||||
|
@ -2517,6 +2521,9 @@ int wpa_config_set_quoted(struct wpa_ssid *ssid, const char *var,
|
||||||
*/
|
*/
|
||||||
char ** wpa_config_get_all(struct wpa_ssid *ssid, int get_keys)
|
char ** wpa_config_get_all(struct wpa_ssid *ssid, int get_keys)
|
||||||
{
|
{
|
||||||
|
#ifdef NO_CONFIG_WRITE
|
||||||
|
return NULL;
|
||||||
|
#else /* NO_CONFIG_WRITE */
|
||||||
const struct parse_data *field;
|
const struct parse_data *field;
|
||||||
char *key, *value;
|
char *key, *value;
|
||||||
size_t i;
|
size_t i;
|
||||||
|
@ -2562,6 +2569,7 @@ err:
|
||||||
os_free(value++);
|
os_free(value++);
|
||||||
os_free(props);
|
os_free(props);
|
||||||
return NULL;
|
return NULL;
|
||||||
|
#endif /* NO_CONFIG_WRITE */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue