Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
labs
BIRD Internet Routing Daemon
Commits
0b761098
Commit
0b761098
authored
May 06, 2000
by
Martin Mareš
Browse files
Fixed silly bug in previous commit.
parent
67be5b23
Changes
1
Hide whitespace changes
Inline
Side-by-side
nest/rt-table.c
View file @
0b761098
...
...
@@ -295,7 +295,7 @@ rte_recalculate(rtable *table, net *net, struct proto *p, rte *new, ea_list *tmp
{
if
(
old
->
attrs
->
proto
==
p
)
{
if
(
rte_same
(
old
,
new
))
if
(
new
&&
rte_same
(
old
,
new
))
{
/* No changes, ignore the new route */
rte_trace_in
(
D_ROUTES
,
p
,
new
,
"ignored"
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment