diff options
author | Sascha Hlusiak <contact@saschahlusiak.de> | 2009-05-19 08:56:50 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-05-19 19:02:01 -0400 |
commit | 4b2796017487f3c1e423b8e1ada6c94c0a8ea815 (patch) | |
tree | 677b9948498a7b5060ab054160e3c3e440e67d37 /net/ipv6 | |
parent | 4fddbf5d7854b0a615c6481988895016f5d038d2 (diff) |
sit: ipip6_tunnel_del_prl: return err
Typo. When deleting a PRL entry, return status to userspace
instead of success.
Signed-off-by: Sascha Hlusiak <contact@saschahlusiak.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/sit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/sit.c b/net/ipv6/sit.c index dfedd56ee104..3fd060076e7a 100644 --- a/net/ipv6/sit.c +++ b/net/ipv6/sit.c | |||
@@ -368,7 +368,7 @@ ipip6_tunnel_del_prl(struct ip_tunnel *t, struct ip_tunnel_prl *a) | |||
368 | } | 368 | } |
369 | out: | 369 | out: |
370 | write_unlock(&ipip6_lock); | 370 | write_unlock(&ipip6_lock); |
371 | return 0; | 371 | return err; |
372 | } | 372 | } |
373 | 373 | ||
374 | static int | 374 | static int |