summaryrefslogtreecommitdiff
path: root/lib/json.c
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@cumulusnetworks.com>2016-10-21 19:27:49 +0000
committerQuentin Young <qlyoung@cumulusnetworks.com>2016-10-21 19:27:49 +0000
commit39e92c066f210b0b550489e98d3b767ee1553e52 (patch)
tree70928b277635d25cb717b8ceb103dd1d5e26f732 /lib/json.c
parent630a298ca76a0e37c263dc1d2c3053cbddc9ccb3 (diff)
parentce01a2ca3f4501b75e55fe325c150eb9c2ae329d (diff)
Merge branch 'cmaster-next' into vtysh-grammar
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com> Conflicts: bgpd/bgp_encap.c bgpd/bgp_route.c lib/command.c lib/command.h ospf6d/ospf6d.c vtysh/vtysh.c
Diffstat (limited to 'lib/json.c')
-rw-r--r--lib/json.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/json.c b/lib/json.c
index 1d22180e10..966d24f005 100644
--- a/lib/json.c
+++ b/lib/json.c
@@ -55,6 +55,12 @@ json_object_int_add(struct json_object* obj, const char *key, int32_t i)
}
void
+json_object_long_add(struct json_object* obj, const char *key, int64_t i)
+{
+ json_object_object_add(obj, key, json_object_new_int64(i));
+}
+
+void
json_object_boolean_false_add(struct json_object* obj, const char *key)
{
json_object_object_add(obj, key, json_object_new_boolean(0));