]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
P2P: Fix a typo to fix CONFIG_P2P=y build
authorJouni Malinen <j@w1.fi>
Sun, 10 Oct 2010 14:28:47 +0000 (17:28 +0300)
committerJouni Malinen <j@w1.fi>
Sun, 10 Oct 2010 14:28:47 +0000 (17:28 +0300)
Previous typo fix was missed here.

src/p2p/p2p_parse.c

index a10389b2afa4e39d187399c4ae066bcd33a4a4e1..25337a557ef2f2af2e97962e2e86058ff72a3c14 100644 (file)
@@ -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);
 }