summaryrefslogtreecommitdiffstats
path: root/ospfd/ospf_snmp.c
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2016-07-28 17:23:49 +0200
committerDonald Sharp <sharpd@cumulusnetwroks.com>2016-07-28 13:27:48 +0200
commitc66f9c6186acb837a4fab441469a26b406f08e37 (patch)
tree55cccc9eedfbfdd8e2b424f4cac1535c7472fa3b /ospfd/ospf_snmp.c
parentpimd: relegate pim_igmp_join.c into a header file (diff)
downloadfrr-c66f9c6186acb837a4fab441469a26b406f08e37.tar.xz
frr-c66f9c6186acb837a4fab441469a26b406f08e37.zip
*: get rid of "MTYPE 0"
A few places are using 0 in place of the MTYPE_* argument. The following rewrite of the alloc tracking won't deal with that, so let's use MTYPE_TMP instead. Acked-by: Vincent JARDIN <vincent.jardin@6wind.com> Acked-by: Donald Sharp <sharpd@cumulusnetworks.com> [DL: v2: fix XFREE(0, foo) calls too] Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'ospfd/ospf_snmp.c')
-rw-r--r--ospfd/ospf_snmp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ospfd/ospf_snmp.c b/ospfd/ospf_snmp.c
index 0eaf44b4d..bedcb559b 100644
--- a/ospfd/ospf_snmp.c
+++ b/ospfd/ospf_snmp.c
@@ -1420,13 +1420,13 @@ struct ospf_snmp_if
static struct ospf_snmp_if *
ospf_snmp_if_new (void)
{
- return XCALLOC (0, sizeof (struct ospf_snmp_if));
+ return XCALLOC (MTYPE_TMP, sizeof (struct ospf_snmp_if));
}
static void
ospf_snmp_if_free (struct ospf_snmp_if *osif)
{
- XFREE (0, osif);
+ XFREE (MTYPE_TMP, osif);
}
void