diff options
| author | Rodny Molina <rmolina@linkedin.com> | 2018-12-12 00:23:23 +0000 |
|---|---|---|
| committer | Rodny Molina <rmolina@linkedin.com> | 2018-12-12 00:23:23 +0000 |
| commit | 89cdc4df6cd0082b42d8bf8dc85a8aa1338cf4e4 (patch) | |
| tree | cf0dd03f7b07c55b3238a033d30a4743d1e6e5c7 /isisd/isis_tx_queue.c | |
| parent | e5b0aaf16bbe9f46645c07ed3c00b5c97733723a (diff) | |
Minor adjustments to address CI warnings
Diffstat (limited to 'isisd/isis_tx_queue.c')
| -rw-r--r-- | isisd/isis_tx_queue.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/isisd/isis_tx_queue.c b/isisd/isis_tx_queue.c index bf5817d008..270dcae7d0 100644 --- a/isisd/isis_tx_queue.c +++ b/isisd/isis_tx_queue.c @@ -125,11 +125,11 @@ static int tx_queue_send_event(struct thread *thread) e->retry = NULL; thread_add_timer(master, tx_queue_send_event, e, 5, &e->retry); - if (e->is_retry) { + if (e->is_retry) queue->circuit->area->lsp_rxmt_count++; - } else { + else e->is_retry = true; - } + queue->send_event(queue->circuit, e->lsp, e->type); /* Don't access e here anymore, send_event might have destroyed it */ |
