From: Jouni Malinen Date: Sun, 10 Oct 2010 14:28:47 +0000 (+0300) Subject: P2P: Fix a typo to fix CONFIG_P2P=y build X-Git-Tag: hostap-1-bp~996 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=mech_eap.git;a=commitdiff_plain;h=ca0d6b81d6c3ddf66db3806cbf8b5c667c066647 P2P: Fix a typo to fix CONFIG_P2P=y build Previous typo fix was missed here. --- diff --git a/src/p2p/p2p_parse.c b/src/p2p/p2p_parse.c index a10389b..25337a5 100644 --- a/src/p2p/p2p_parse.c +++ b/src/p2p/p2p_parse.c @@ -662,7 +662,7 @@ int p2p_get_cross_connect_disallowed(const struct wpabuf *p2p_ie) if (!msg.manageability) return 0; - return !(msg.manageability[0] & P2P_MAN_CROSS_CONNECTIION_PERMITTED); + return !(msg.manageability[0] & P2P_MAN_CROSS_CONNECTION_PERMITTED); }