From c0f306203160c0799ecaf00f539dbb31daba1d17 Mon Sep 17 00:00:00 2001 From: George Joseph Date: Tue, 16 Feb 2016 11:20:57 -0700 Subject: [PATCH] res_statsd: Fix exports.in for missing symbols MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit res_statsd.export.in was missing the _va variations of the log functions causing Asterisk to crash in res_pjsip if OPTIONAL_API wasn't enabled. ASTERISK-25727 #close Reported-by: Gergely Dömsödi Change-Id: I395729f9f51bdd33c5ca757f5f96ebedad74077b --- res/res_statsd.exports.in | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/res/res_statsd.exports.in b/res/res_statsd.exports.in index d4a79c18f0..ca28b1605d 100644 --- a/res/res_statsd.exports.in +++ b/res/res_statsd.exports.in @@ -1,9 +1,6 @@ { global: - LINKER_SYMBOL_PREFIX*ast_statsd_log; - LINKER_SYMBOL_PREFIX*ast_statsd_log_full; - LINKER_SYMBOL_PREFIX*ast_statsd_log_sample; - LINKER_SYMBOL_PREFIX*ast_statsd_log_string; + LINKER_SYMBOL_PREFIXast_statsd_log*; local: *; };