Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
labs
BIRD Internet Routing Daemon
Commits
8ca8683c
Commit
8ca8683c
authored
Oct 20, 1998
by
Martin Mareš
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Beware the NULL route, my son... The bugs that bite, the BIRDs that crash :-)
parent
acc62f5e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
nest/rt-table.c
nest/rt-table.c
+6
-3
No files found.
nest/rt-table.c
View file @
8ca8683c
...
...
@@ -203,9 +203,12 @@ rte_update(net *net, struct proto *p, rte *new)
p
->
rte_remove
(
net
,
old
);
rte_free
(
old
);
}
new
->
lastmod
=
now
;
if
(
p
->
rte_insert
)
p
->
rte_insert
(
net
,
new
);
if
(
new
)
{
new
->
lastmod
=
now
;
if
(
p
->
rte_insert
)
p
->
rte_insert
(
net
,
new
);
}
}
void
...
...
Write
Preview
Markdown
is supported
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