diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2021-04-23 11:23:57 +0200 | 
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2021-04-23 12:25:47 +0200 | 
| commit | df5dfb77b5c38fc1c5b242b3df1f4bc9b3e02869 (patch) | |
| tree | 3e55d2c4d7154bed6ad54e03086ad178873173fc /pimd/pim_zebra.c | |
| parent | 6a0eb6885b80260294673078dc97eb47b9ad753f (diff) | |
pimd: zassert => assert
No point in having pimd use zassert() while everything else uses plain
assert().
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'pimd/pim_zebra.c')
| -rw-r--r-- | pimd/pim_zebra.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/pimd/pim_zebra.c b/pimd/pim_zebra.c index f0eae955cc..6f933e9e72 100644 --- a/pimd/pim_zebra.c +++ b/pimd/pim_zebra.c @@ -471,8 +471,8 @@ void igmp_anysource_forward_start(struct pim_instance *pim,  	struct igmp_source *source;  	struct in_addr src_addr = {.s_addr = 0};  	/* Any source (*,G) is forwarded only if mode is EXCLUDE {empty} */ -	zassert(group->group_filtermode_isexcl); -	zassert(listcount(group->group_source_list) < 1); +	assert(group->group_filtermode_isexcl); +	assert(listcount(group->group_source_list) < 1);  	source = source_new(group, src_addr);  	if (!source) {  | 
