summaryrefslogtreecommitdiff
path: root/lib/if.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2016-04-08 19:32:53 +0000
committerDonald Sharp <sharpd@cumulusnetworks.com>2016-04-12 20:19:28 -0400
commit58255d344034a360de07b4998ff2936a8d2c604d (patch)
tree15a70889ce025b9217b845732eaf6d1f2fe9e772 /lib/if.c
parent88227bbe362c827208541f8bd145bd2cccfb1f59 (diff)
lib, zebra: Refactor vrf creation a bit more
Create the idea of a VRF_UNKNOWN, this is for a vrf where we don't yet have the vrf_id for it yet. Refactor the vrf_create code out of existence. We had two code paths vrf_create and vrf_get. We should use vrf_get to create the new vrf since XXX_get() creates the data structures now. Signed-off-by: Donald Sharp Reviewed-by: Vivek Venkatraman <vivek@cumulusnetworks.com>
Diffstat (limited to 'lib/if.c')
-rw-r--r--lib/if.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/if.c b/lib/if.c
index 1d0518956a..dd70ac2d45 100644
--- a/lib/if.c
+++ b/lib/if.c
@@ -848,7 +848,7 @@ DEFUN (vrf,
return CMD_WARNING;
}
- vrfp = vrf_get_by_name (argv[0]);
+ vrfp = vrf_get (VRF_UNKNOWN, argv[0]);
vty->index = vrfp;
vty->node = VRF_NODE;