diff options
| author | Russ White <russ@riw.us> | 2024-04-16 15:51:12 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-16 15:51:12 -0400 | 
| commit | 5ef6a2bb54eacc35854e9db8dde71c406fb9364c (patch) | |
| tree | 8dfe38843a42a06f3673824df4046addfed4a5e8 /isisd | |
| parent | 84d1fb19e22a5f0d13d3bbb7c74e9948773e66f3 (diff) | |
| parent | f9b1067bf1d68ab0eeca60b60cf878269753c23f (diff) | |
Merge pull request #15715 from zhou-run/202404092057
isisd: The hold time of hello packets on a P2P link does not match the sending interval.
Diffstat (limited to 'isisd')
| -rw-r--r-- | isisd/isis_pdu.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/isisd/isis_pdu.c b/isisd/isis_pdu.c index 6f410d342e..5be317018e 100644 --- a/isisd/isis_pdu.c +++ b/isisd/isis_pdu.c @@ -2082,7 +2082,7 @@ static void send_hello_cb(struct event *thread)  		circuit->u.p2p.t_send_p2p_hello = NULL;  		send_hello(circuit, 1);  		send_hello_sched(circuit, ISIS_LEVEL1, -				 1000 * circuit->hello_interval[1]); +				 1000 * circuit->hello_interval[0]);  		return;  	}  | 
