From bb6a62d4abc0ebe3be983a9a02c329f03e24aca9 Mon Sep 17 00:00:00 2001 From: Martin Kletzander Date: Mon, 13 Apr 2015 16:11:03 +0200 Subject: [PATCH] json: export non-static functions Two non-static functions in virjson.c were missing their export info in libvirt_private.syms, so they couldn't be used anywhere it the code (and that's about to get changed). Signed-off-by: Martin Kletzander --- src/libvirt_private.syms | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libvirt_private.syms b/src/libvirt_private.syms index acaaaabf1c..6dd3b6f103 100644 --- a/src/libvirt_private.syms +++ b/src/libvirt_private.syms @@ -1570,6 +1570,7 @@ virISCSIScanTargets; virJSONValueArrayAppend; virJSONValueArrayGet; virJSONValueArraySize; +virJSONValueArraySteal; virJSONValueFree; virJSONValueFromString; virJSONValueGetArrayAsBitmap; @@ -1580,6 +1581,7 @@ virJSONValueGetNumberLong; virJSONValueGetNumberUint; virJSONValueGetNumberUlong; virJSONValueGetString; +virJSONValueIsArray; virJSONValueIsNull; virJSONValueNewArray; virJSONValueNewArrayFromBitmap;