From 08d31e3b1bbef4f050d9d603c620e060f38f980c Mon Sep 17 00:00:00 2001 From: Jukka Rissanen Date: Mon, 22 Dec 2014 14:38:58 +0200 Subject: [PATCH] wiphy: Fixes due to nl80211.h changes --- src/wiphy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wiphy.c b/src/wiphy.c index 21fe6c51..d450cb33 100644 --- a/src/wiphy.c +++ b/src/wiphy.c @@ -787,7 +787,7 @@ static void setup_scheduled_scan(struct wiphy *wiphy, struct netdev *netdev, msg_append_attr(msg, NL80211_ATTR_IFINDEX, 4, &netdev->index); msg_append_attr(msg, NL80211_ATTR_SCHED_SCAN_INTERVAL, 4, &scan_interval); - msg_append_attr(msg, NL80211_ATTR_SCAN_SOCKET_OWNER, 0, NULL); + msg_append_attr(msg, NL80211_ATTR_SOCKET_OWNER, 0, NULL); if (!l_genl_family_send(nl80211, msg, sched_scan_callback, NULL, NULL)) l_error("Starting scheduled scan failed");