mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-11 15:18:06 +00:00
[bgpd] fix typo made by paul in previous commit
This commit is contained in:
parent
e8eb000e15
commit
a294365797
@ -2726,9 +2726,9 @@ bgp_clear_node_complete (struct work_queue *wq)
|
|||||||
static void
|
static void
|
||||||
bgp_clear_node_queue_init (struct peer *peer)
|
bgp_clear_node_queue_init (struct peer *peer)
|
||||||
{
|
{
|
||||||
char wname[sizeof("clear xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx"];
|
char wname[sizeof("clear xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx")];
|
||||||
|
|
||||||
snprintf (wname, CLEAR_QUEUE_NAME_LEN, "clear %s", peer->host);
|
snprintf (wname, sizeof(wname), "clear %s", peer->host);
|
||||||
#undef CLEAR_QUEUE_NAME_LEN
|
#undef CLEAR_QUEUE_NAME_LEN
|
||||||
|
|
||||||
if ( (peer->clear_node_queue = work_queue_new (bm->master, wname)) == NULL)
|
if ( (peer->clear_node_queue = work_queue_new (bm->master, wname)) == NULL)
|
||||||
|
Loading…
Reference in New Issue
Block a user