diff options
Diffstat (limited to 'net/ipv4/fib_rules.c')
-rw-r--r-- | net/ipv4/fib_rules.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/fib_rules.c b/net/ipv4/fib_rules.c index 0330b9cc4b58..ce185ac6f260 100644 --- a/net/ipv4/fib_rules.c +++ b/net/ipv4/fib_rules.c | |||
@@ -172,8 +172,8 @@ static struct fib_table *fib_empty_table(void) | |||
172 | u32 id; | 172 | u32 id; |
173 | 173 | ||
174 | for (id = 1; id <= RT_TABLE_MAX; id++) | 174 | for (id = 1; id <= RT_TABLE_MAX; id++) |
175 | if (fib_tables[id] == NULL) | 175 | if (fib_get_table(id) == NULL) |
176 | return __fib_new_table(id); | 176 | return fib_new_table(id); |
177 | return NULL; | 177 | return NULL; |
178 | } | 178 | } |
179 | 179 | ||