summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ripngd/ripngd.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/ripngd/ripngd.c b/ripngd/ripngd.c
index 7269e76656..d5618b63f2 100644
--- a/ripngd/ripngd.c
+++ b/ripngd/ripngd.c
@@ -2624,17 +2624,10 @@ static int ripng_vrf_new(struct vrf *vrf)
static int ripng_vrf_delete(struct vrf *vrf)
{
- struct ripng *ripng;
-
if (IS_RIPNG_DEBUG_EVENT)
zlog_debug("%s: VRF deleted: %s(%u)", __func__, vrf->name,
vrf->vrf_id);
- ripng = ripng_lookup_by_vrf_name(vrf->name);
- if (!ripng)
- return 0;
-
- ripng_clean(ripng);
return 0;
}