diff options
author | David S. Miller <davem@davemloft.net> | 2011-02-23 04:47:10 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-02-23 04:47:10 +0300 |
commit | 05d8402576c9c1b85bfc9e4f9d6a21c27ccbd5b1 (patch) | |
tree | d3406de85a12ae45b75ef109bd8e991b119f55b9 /net/ipv6/xfrm6_policy.c | |
parent | e8a4e37716dbc964e1cd18bca1a62fbd11805c1d (diff) | |
download | linux-05d8402576c9c1b85bfc9e4f9d6a21c27ccbd5b1.tar.xz |
xfrm: Mark flowi arg to ->get_tos() const.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/xfrm6_policy.c')
-rw-r--r-- | net/ipv6/xfrm6_policy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/xfrm6_policy.c b/net/ipv6/xfrm6_policy.c index 834dc02f1d4f..753e9a1db379 100644 --- a/net/ipv6/xfrm6_policy.c +++ b/net/ipv6/xfrm6_policy.c @@ -67,7 +67,7 @@ static int xfrm6_get_saddr(struct net *net, return 0; } -static int xfrm6_get_tos(struct flowi *fl) +static int xfrm6_get_tos(const struct flowi *fl) { return 0; } |