mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-29 02:22:43 +00:00
Do not delete 'goto ours' routes when using -c option.
Obtained from: KAME
This commit is contained in:
parent
040eea4cc8
commit
220f01cd2d
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=81366
@ -637,7 +637,12 @@ again:;
|
||||
sizeof(host_buf), NULL, 0,
|
||||
NI_WITHSCOPEID | (nflag ? NI_NUMERICHOST : 0));
|
||||
if (cflag == 1) {
|
||||
#ifdef RTF_WASCLONED
|
||||
if (rtm->rtm_flags & RTF_WASCLONED)
|
||||
delete(host_buf);
|
||||
#else
|
||||
delete(host_buf);
|
||||
#endif
|
||||
continue;
|
||||
}
|
||||
gettimeofday(&time, 0);
|
||||
|
Loading…
Reference in New Issue
Block a user