From: George Joseph Date: Tue, 16 Feb 2016 18:20:57 +0000 (-0700) Subject: res_statsd: Fix exports.in for missing symbols X-Git-Tag: 14.0.0-beta1~392 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=49203628f984009011493ceefd58aa9e056b0351;p=thirdparty%2Fasterisk.git res_statsd: Fix exports.in for missing symbols 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 --- 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: *; };