diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-06-25 09:07:42 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-25 09:07:42 -0400 |
| commit | b6eaf9065bc6450924e670fa6acb5862912ec9dc (patch) | |
| tree | 07cb77f68b412c487831076ad01221445b957423 /isisd/isis_tx_queue.c | |
| parent | 95832d33ba744a5608950c24f7e8b6ae2efdad20 (diff) | |
| parent | e740f9c1596333ae8e6ac602dabbfc9a9c769d04 (diff) | |
Merge pull request #6619 from Niral-Networks/niral_isis_debug_p2
ISIS VRF: ISIS Debug structure modifications Type 2
Diffstat (limited to 'isisd/isis_tx_queue.c')
| -rw-r--r-- | isisd/isis_tx_queue.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/isisd/isis_tx_queue.c b/isisd/isis_tx_queue.c index 27e57db16c..1424b55bdc 100644 --- a/isisd/isis_tx_queue.c +++ b/isisd/isis_tx_queue.c @@ -144,7 +144,7 @@ void _isis_tx_queue_add(struct isis_tx_queue *queue, if (!queue) return; - if (isis->debugs & DEBUG_TX_QUEUE) { + if (IS_DEBUG_TX_QUEUE) { zlog_debug("Add LSP %s to %s queue as %s LSP. (From %s %s:%d)", rawlspid_print(lsp->hdr.lsp_id), queue->circuit->interface->name, @@ -183,7 +183,7 @@ void _isis_tx_queue_del(struct isis_tx_queue *queue, struct isis_lsp *lsp, if (!e) return; - if (isis->debugs & DEBUG_TX_QUEUE) { + if (IS_DEBUG_TX_QUEUE) { zlog_debug("Remove LSP %s from %s queue. (From %s %s:%d)", rawlspid_print(lsp->hdr.lsp_id), queue->circuit->interface->name, |
