From: Lucas De Marchi Date: Fri, 11 May 2012 00:11:27 +0000 (-0300) Subject: build: remove private symbol from linker script X-Git-Tag: v9~46 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=96253751ae9533e301375b9707670e8f89ae9d3c;p=thirdparty%2Fkmod.git build: remove private symbol from linker script There's no reason kmod_log should be exported, remove it from linker script. This doesn't break the API/ABI because we are luck: since the function had visibility=hidden it was not getting exported as a global symbol. --- diff --git a/libkmod/libkmod.sym b/libkmod/libkmod.sym index cebb8d20..854d257d 100644 --- a/libkmod/libkmod.sym +++ b/libkmod/libkmod.sym @@ -2,7 +2,6 @@ LIBKMOD_5 { global: kmod_get_log_priority; kmod_get_userdata; - kmod_log; kmod_new; kmod_ref; kmod_set_log_fn;