From 3141b82c16ad624695d0c6be1aa2030f2128e501 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sat, 1 Mar 2014 10:48:08 +0200 Subject: [PATCH] Add OSEN to proto config field writer This was forgotten from the OSEN addition where it was parsed, but not written to a network block. Signed-off-by: Jouni Malinen --- wpa_supplicant/config.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/wpa_supplicant/config.c b/wpa_supplicant/config.c index da9580e94..23aab4ba9 100644 --- a/wpa_supplicant/config.c +++ b/wpa_supplicant/config.c @@ -438,10 +438,10 @@ static char * wpa_config_write_proto(const struct parse_data *data, int first = 1, ret; char *buf, *pos, *end; - pos = buf = os_zalloc(10); + pos = buf = os_zalloc(20); if (buf == NULL) return NULL; - end = buf + 10; + end = buf + 20; if (ssid->proto & WPA_PROTO_WPA) { ret = os_snprintf(pos, end - pos, "%sWPA", first ? "" : " "); @@ -459,6 +459,14 @@ static char * wpa_config_write_proto(const struct parse_data *data, first = 0; } + if (ssid->proto & WPA_PROTO_OSEN) { + ret = os_snprintf(pos, end - pos, "%sOSEN", first ? "" : " "); + if (ret < 0 || ret >= end - pos) + return buf; + pos += ret; + first = 0; + } + return buf; } #endif /* NO_CONFIG_WRITE */