From: Jouni Malinen Date: Sat, 29 Nov 2008 19:07:35 +0000 (+0200) Subject: WPS: Get AP PIN from configuration instead of using hardcoded value X-Git-Tag: hostap_0_6_7~170 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=23f53f2a8174ddae48c54c2df98e5362144bdffb;p=thirdparty%2Fhostap.git WPS: Get AP PIN from configuration instead of using hardcoded value --- diff --git a/src/eap_peer/eap_wsc.c b/src/eap_peer/eap_wsc.c index 2cf52f827..b1a29b0e3 100644 --- a/src/eap_peer/eap_wsc.c +++ b/src/eap_peer/eap_wsc.c @@ -207,8 +207,10 @@ static void * eap_wsc_init(struct eap_sm *sm) "yet fully supported - using test values"); u8 uuid_e[UUID_LEN]; os_memset(uuid_e, 0, UUID_LEN); - wps_registrar_add_pin(data->wps_ctx->registrar, uuid_e, - (const u8 *) "12345670", 8); + if (cfg.pin) { + wps_registrar_add_pin(data->wps_ctx->registrar, uuid_e, + cfg.pin, cfg.pin_len); + } } return data;