diff options
| author | Russ White <russ@riw.us> | 2023-05-16 08:37:19 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-16 08:37:19 -0400 | 
| commit | 425fc1f5b7f42c16d27ecdc602546d4521793d6f (patch) | |
| tree | 7a12a2bec6d0ab06aa61c54fc738081893eadd41 /ospfd/ospf_packet.c | |
| parent | cf0eeb3dc17d7ff9a4874464e95dbf6d971cb437 (diff) | |
| parent | 6a3631468d4d5ef2a29f371aab021e6b9a4490a9 (diff) | |
Merge pull request #12949 from opensourcerouting/ospf-unplanned-gr
OSPF GR for unplanned outages
Diffstat (limited to 'ospfd/ospf_packet.c')
| -rw-r--r-- | ospfd/ospf_packet.c | 5 | 
1 files changed, 2 insertions, 3 deletions
diff --git a/ospfd/ospf_packet.c b/ospfd/ospf_packet.c index fe94c34e4e..d010b8b6e6 100644 --- a/ospfd/ospf_packet.c +++ b/ospfd/ospf_packet.c @@ -4040,9 +4040,8 @@ static struct ospf_packet *ospf_ls_upd_packet_new(struct list *update,  	return ospf_packet_new(size - sizeof(struct ip));  } -static void ospf_ls_upd_queue_send(struct ospf_interface *oi, -				   struct list *update, struct in_addr addr, -				   int send_lsupd_now) +void ospf_ls_upd_queue_send(struct ospf_interface *oi, struct list *update, +			    struct in_addr addr, int send_lsupd_now)  {  	struct ospf_packet *op;  	uint16_t length = OSPF_HEADER_SIZE;  | 
