aboutsummaryrefslogtreecommitdiffstats
path: root/net/wireless
diff options
context:
space:
mode:
authorRui Paulo <rpaulo@gmail.com>2009-11-09 18:46:55 -0500
committerJohn W. Linville <linville@tuxdriver.com>2009-11-13 17:43:56 -0500
commitd19b3bf6384e66ac6e11a61ee31ed2cfe149f4d8 (patch)
tree2ec825639458dafddecc7e3d0f83afff9cff0cfa /net/wireless
parentbe125c60e46e165fbfe33db36a4a9d943d560a5b (diff)
mac80211: replace "destination" with "target" to follow the spec
Resulting object files have the same MD5 as before. Signed-off-by: Rui Paulo <rpaulo@gmail.com> Signed-off-by: Javier Cardona <javier@cozybit.com> Reviewed-by: Andrey Yurovsky <andrey@cozybit.com> Tested-by: Brian Cavagnolo <brian@cozybit.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/wireless')
-rw-r--r--net/wireless/nl80211.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c
index 8c8e4eae6a17..7c1999872503 100644
--- a/net/wireless/nl80211.c
+++ b/net/wireless/nl80211.c
@@ -2116,9 +2116,9 @@ static int nl80211_send_mpath(struct sk_buff *msg, u32 pid, u32 seq,
2116 if (pinfo->filled & MPATH_INFO_FRAME_QLEN) 2116 if (pinfo->filled & MPATH_INFO_FRAME_QLEN)
2117 NLA_PUT_U32(msg, NL80211_MPATH_INFO_FRAME_QLEN, 2117 NLA_PUT_U32(msg, NL80211_MPATH_INFO_FRAME_QLEN,
2118 pinfo->frame_qlen); 2118 pinfo->frame_qlen);
2119 if (pinfo->filled & MPATH_INFO_DSN) 2119 if (pinfo->filled & MPATH_INFO_SN)
2120 NLA_PUT_U32(msg, NL80211_MPATH_INFO_DSN, 2120 NLA_PUT_U32(msg, NL80211_MPATH_INFO_SN,
2121 pinfo->dsn); 2121 pinfo->sn);
2122 if (pinfo->filled & MPATH_INFO_METRIC) 2122 if (pinfo->filled & MPATH_INFO_METRIC)
2123 NLA_PUT_U32(msg, NL80211_MPATH_INFO_METRIC, 2123 NLA_PUT_U32(msg, NL80211_MPATH_INFO_METRIC,
2124 pinfo->metric); 2124 pinfo->metric);