From: Jouni Malinen Date: Fri, 3 Nov 2017 10:09:15 +0000 (+0200) Subject: DPP: Remove obsolete TODO comment on discovery object X-Git-Tag: hostap_2_7~905 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2265353a4fc57d66729a6c34b366ddc2bc6a3e16;p=thirdparty%2Fhostap.git DPP: Remove obsolete TODO comment on discovery object The optional channel information was removed from the discovery object in the DPP tech spec, so no need to maintain this TODO note anymore. Signed-off-by: Jouni Malinen --- diff --git a/src/common/dpp.c b/src/common/dpp.c index 7f5046a2f..3ad25f548 100644 --- a/src/common/dpp.c +++ b/src/common/dpp.c @@ -3435,9 +3435,7 @@ dpp_build_conf_start(struct dpp_authentication *auth, json_escape_string(ssid, sizeof(ssid), (const char *) conf->ssid, conf->ssid_len); wpabuf_put_str(buf, ssid); - wpabuf_put_str(buf, "\""); - /* TODO: optional channel information */ - wpabuf_put_str(buf, "},"); + wpabuf_put_str(buf, "\"},"); return buf; }