Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit eeb04a96 authored by Johannes Berg's avatar Johannes Berg
Browse files

nl80211: fix logic inversion in start_nan()



Arend inadvertently inverted the logic while converting to
wdev_running(), fix that.

Fixes: 73c7da3d ("cfg80211: add generic helper to check interface is running")
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent f81a8a02
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -10628,7 +10628,7 @@ static int nl80211_start_nan(struct sk_buff *skb, struct genl_info *info)
	if (wdev->iftype != NL80211_IFTYPE_NAN)
		return -EOPNOTSUPP;

	if (!wdev_running(wdev))
	if (wdev_running(wdev))
		return -EEXIST;

	if (rfkill_blocked(rdev->rfkill))