diff options
| -rw-r--r-- | zebra/zebra_routemap.c | 5 | 
1 files changed, 2 insertions, 3 deletions
diff --git a/zebra/zebra_routemap.c b/zebra/zebra_routemap.c index 4fc49e4f3d..aa37d88890 100644 --- a/zebra/zebra_routemap.c +++ b/zebra/zebra_routemap.c @@ -257,8 +257,7 @@ static int ip_protocol_rm_add(struct zebra_vrf *zvrf, const char *rmap,  		route_map_lookup_by_name(PROTO_RM_NAME(zvrf, afi, rtype));  	route_map_counter_increment(PROTO_RM_MAP(zvrf, afi, rtype)); -	if (PROTO_RM_MAP(zvrf, afi, rtype)) { - +	if (PROTO_RM_NAME(zvrf, afi, rtype)) {  		if (IS_ZEBRA_DEBUG_RIB_DETAILED)  			zlog_debug(  				"%u: IPv4 Routemap config for protocol %d scheduling RIB processing", @@ -284,7 +283,7 @@ static int ip_protocol_rm_del(struct zebra_vrf *zvrf, const char *rmap,  	if (!rmap || strcmp(rmap, PROTO_RM_NAME(zvrf, afi, rtype)) == 0) {  		route_map_counter_decrement(PROTO_RM_MAP(zvrf, afi, rtype)); -		if (PROTO_RM_MAP(zvrf, afi, rtype)) { +		if (PROTO_RM_NAME(zvrf, afi, rtype)) {  			if (IS_ZEBRA_DEBUG_RIB_DETAILED)  				zlog_debug(  					"%u: IPv4 Routemap unconfig for protocol %d, scheduling RIB processing",  | 
