
equinox at opensourcerouting
Jun 21, 2012, 1:02 AM
Post #1 of 1
(142 views)
Permalink
|
|
[PATCH 3/3] isisd: fix typo in topology generator (BZ#731)
|
|
There was a "lsp->" missing before "level" in line 2416. (introduced by git commit e38e0df) Reported-by: Seblu <seblu [at] seblu> Signed-off-by: David Lamparter <equinox [at] opensourcerouting> --- isisd/isis_lsp.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/isisd/isis_lsp.c b/isisd/isis_lsp.c index 5c1e993..082e9dc 100644 --- a/isisd/isis_lsp.c +++ b/isisd/isis_lsp.c @@ -2413,7 +2413,7 @@ top_lsp_refresh (struct thread *thread) isis_dynhn_insert (lsp->lsp_header->lsp_id, lsp->tlv_data.hostname, IS_LEVEL_1); - lsp->lsp_header->lsp_bits = lsp_bits_generate (level, + lsp->lsp_header->lsp_bits = lsp_bits_generate (lsp->level, lsp->area->overload_bit); rem_lifetime = lsp_rem_lifetime (lsp->area, IS_LEVEL_1); lsp->lsp_header->rem_lifetime = htons (rem_lifetime); -- 1.7.8.6 _______________________________________________ Quagga-dev mailing list Quagga-dev [at] lists http://lists.quagga.net/mailman/listinfo/quagga-dev
|