From: Martin Kletzander Date: Mon, 13 Apr 2015 14:11:03 +0000 (+0200) Subject: json: export non-static functions X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=bb6a62d4abc0ebe3be983a9a02c329f03e24aca9;p=libvirt.git 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 --- 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;