diff options
author | David S. Miller <davem@davemloft.net> | 2011-02-22 18:07:39 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-02-22 18:07:39 -0800 |
commit | e1ad2ab2cf0cabcd81861e2c61870fc27bb27ded (patch) | |
tree | 052495802067a0b1aa2513af867c57bb954c6fe3 /include/net/xfrm.h | |
parent | 1744a8fe09e5db7315a57da52fa7c1afa779cfa0 (diff) | |
download | linux-3.10-e1ad2ab2cf0cabcd81861e2c61870fc27bb27ded.tar.gz linux-3.10-e1ad2ab2cf0cabcd81861e2c61870fc27bb27ded.tar.bz2 linux-3.10-e1ad2ab2cf0cabcd81861e2c61870fc27bb27ded.zip |
xfrm: Mark flowi arg to xfrm_selector_match() const.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/xfrm.h')
-rw-r--r-- | include/net/xfrm.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/net/xfrm.h b/include/net/xfrm.h index 2328532f007..b965ad795b6 100644 --- a/include/net/xfrm.h +++ b/include/net/xfrm.h @@ -843,7 +843,8 @@ __be16 xfrm_flowi_dport(const struct flowi *fl) return port; } -extern int xfrm_selector_match(struct xfrm_selector *sel, struct flowi *fl, +extern int xfrm_selector_match(struct xfrm_selector *sel, + const struct flowi *fl, unsigned short family); #ifdef CONFIG_SECURITY_NETWORK_XFRM |