--- src/p2putil.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/p2putil.c b/src/p2putil.c index 79371168..7d1a7ad2 100644 --- a/src/p2putil.c +++ b/src/p2putil.c @@ -2216,9 +2216,9 @@ static uint8_t *p2p_build_action_frame(bool public, uint8_t frame_subtype, } else ret[pos++] = 0x7f; /* Category: Vendor Specific */ - ret[pos++] = 0x50; /* OUI: Wi-Fi Alliance */ - ret[pos++] = 0x6f; - ret[pos++] = 0x9a; + ret[pos++] = wifi_alliance_oui[0]; + ret[pos++] = wifi_alliance_oui[1]; + ret[pos++] = wifi_alliance_oui[2]; ret[pos++] = 0x09; /* OUI type: Wi-Fi Alliance P2P v1.0 */ ret[pos++] = frame_subtype; ret[pos++] = dialog_token; -- 2.20.1