diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1999-06-13 16:29:25 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1999-06-13 16:29:25 +0000 |
commit | db7d4daea91e105e3859cf461d7e53b9b77454b2 (patch) | |
tree | 9bb65b95440af09e8aca63abe56970dd3360cc57 /net/ipv4/fib_semantics.c | |
parent | 9c1c01ead627bdda9211c9abd5b758d6c687d8ac (diff) |
Merge with Linux 2.2.8.
Diffstat (limited to 'net/ipv4/fib_semantics.c')
-rw-r--r-- | net/ipv4/fib_semantics.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ipv4/fib_semantics.c b/net/ipv4/fib_semantics.c index 7bff36095..b78f7ebaf 100644 --- a/net/ipv4/fib_semantics.c +++ b/net/ipv4/fib_semantics.c @@ -5,7 +5,7 @@ * * IPv4 Forwarding Information Base: semantics. * - * Version: $Id: fib_semantics.c,v 1.11 1998/10/03 09:37:12 davem Exp $ + * Version: $Id: fib_semantics.c,v 1.13 1999/03/21 05:22:34 davem Exp $ * * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> * @@ -89,7 +89,7 @@ static struct { -EINVAL, RT_SCOPE_UNIVERSE}, /* RTN_BLACKHOLE */ { -EHOSTUNREACH, RT_SCOPE_UNIVERSE},/* RTN_UNREACHABLE */ { -EACCES, RT_SCOPE_UNIVERSE}, /* RTN_PROHIBIT */ - { 1, RT_SCOPE_UNIVERSE}, /* RTN_THROW */ + { -EAGAIN, RT_SCOPE_UNIVERSE}, /* RTN_THROW */ #ifdef CONFIG_IP_ROUTE_NAT { 0, RT_SCOPE_HOST}, /* RTN_NAT */ #else @@ -420,7 +420,7 @@ fib_create_info(const struct rtmsg *r, struct kern_rta *rta, unsigned flavor = attr->rta_type; if (flavor) { if (flavor > FIB_MAX_METRICS) - goto failure; + goto err_inval; fi->fib_metrics[flavor-1] = *(unsigned*)RTA_DATA(attr); } attr = RTA_NEXT(attr, attrlen); |