Browse Source

P2P: Fix a typo to fix CONFIG_P2P=y build

Previous typo fix was missed here.
Jouni Malinen 14 years ago
parent
commit
ca0d6b81d6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/p2p/p2p_parse.c

+ 1 - 1
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);
 }