diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-05-31 20:51:43 -0400 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-06-05 10:42:05 -0400 | 
| commit | 752ee70be899a388d9e8432f8b78b92159a832c4 (patch) | |
| tree | f4565f5fff6a1c48e4887d452151d6cc71ebf815 /ospfd/ospf_flood.c | |
| parent | b2608623176634e0d9b383f7a91b6f4b05bcca1e (diff) | |
ospfd: Note that we do not care about self origination in this case
When we first get a packet, we need to know if we are self
originated later to make correct decisions.  Go ahead and
note that we do not plan to make any decision points
about our self origination here.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'ospfd/ospf_flood.c')
| -rw-r--r-- | ospfd/ospf_flood.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/ospfd/ospf_flood.c b/ospfd/ospf_flood.c index 183ddc0d89..820b892176 100644 --- a/ospfd/ospf_flood.c +++ b/ospfd/ospf_flood.c @@ -319,7 +319,7 @@ int ospf_flood(struct ospf *ospf, struct ospf_neighbor *nbr,  	/* Do some internal house keeping that is needed here */  	SET_FLAG(new->flags, OSPF_LSA_RECEIVED); -	ospf_lsa_is_self_originated(ospf, new); /* Let it set the flag */ +	(void)ospf_lsa_is_self_originated(ospf, new); /* Let it set the flag */  	/* Install the new LSA in the link state database  	   (replacing the current database copy).  This may cause the  | 
