diff options
author | David S. Miller <davem@davemloft.net> | 2011-02-24 01:44:12 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-02-24 02:07:47 -0500 |
commit | 9a7386ec999ae226890faea2661b4c7d494bcbb8 (patch) | |
tree | 500b049c124bb07e316921332d46cf95b4a471a2 /net/xfrm | |
parent | 22cccb7e03125155624d0893b86a151155f1048e (diff) |
xfrm: Const'ify sec_path arg to secpath_has_nontransport.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/xfrm')
-rw-r--r-- | net/xfrm/xfrm_policy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/xfrm/xfrm_policy.c b/net/xfrm/xfrm_policy.c index 2de0bc233d44..41a91d27d3ea 100644 --- a/net/xfrm/xfrm_policy.c +++ b/net/xfrm/xfrm_policy.c | |||
@@ -1994,7 +1994,7 @@ int __xfrm_decode_session(struct sk_buff *skb, struct flowi *fl, | |||
1994 | } | 1994 | } |
1995 | EXPORT_SYMBOL(__xfrm_decode_session); | 1995 | EXPORT_SYMBOL(__xfrm_decode_session); |
1996 | 1996 | ||
1997 | static inline int secpath_has_nontransport(struct sec_path *sp, int k, int *idxp) | 1997 | static inline int secpath_has_nontransport(const struct sec_path *sp, int k, int *idxp) |
1998 | { | 1998 | { |
1999 | for (; k < sp->len; k++) { | 1999 | for (; k < sp->len; k++) { |
2000 | if (sp->xvec[k]->props.mode != XFRM_MODE_TRANSPORT) { | 2000 | if (sp->xvec[k]->props.mode != XFRM_MODE_TRANSPORT) { |