summaryrefslogtreecommitdiff
path: root/ofproto/ofproto-dpif-ipfix.c
diff options
context:
space:
mode:
authorBen Pfaff <blp@ovn.org>2016-06-24 21:23:16 -0700
committerBen Pfaff <blp@ovn.org>2016-06-26 20:31:28 -0700
commit2225c0b9355e6823a2adccfeef2fb3fe3cccb557 (patch)
tree03d24cfb8f4d38cc82dc08f728e4a0d4dae809d6 /ofproto/ofproto-dpif-ipfix.c
parent05e81316ca53077b97ecf56c32b24b99efe3e51e (diff)
downloadopenvswitch-2225c0b9355e6823a2adccfeef2fb3fe3cccb557.tar.gz
util: New function nullable_xstrdup().
It's a pretty common pattern so create a function for it. Signed-off-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'ofproto/ofproto-dpif-ipfix.c')
-rw-r--r--ofproto/ofproto-dpif-ipfix.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/ofproto/ofproto-dpif-ipfix.c b/ofproto/ofproto-dpif-ipfix.c
index 35f481d0a..5744abbcb 100644
--- a/ofproto/ofproto-dpif-ipfix.c
+++ b/ofproto/ofproto-dpif-ipfix.c
@@ -469,12 +469,6 @@ nullable_string_is_equal(const char *a, const char *b)
return a ? b && !strcmp(a, b) : !b;
}
-static char *
-nullable_xstrdup(const char *s)
-{
- return s ? xstrdup(s) : NULL;
-}
-
static bool
ofproto_ipfix_bridge_exporter_options_equal(
const struct ofproto_ipfix_bridge_exporter_options *a,