From: Karel Zak Date: Wed, 16 Feb 2011 15:36:18 +0000 (+0100) Subject: libuuid: move __uuid function to UUIDD_PRIVATE in uuid.sym X-Git-Tag: v2.20-rc1~554 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e47bce7822ca910cf360d41acf67d4d9b31dd2be;p=thirdparty%2Futil-linux.git libuuid: move __uuid function to UUIDD_PRIVATE in uuid.sym The private functions for uuidd should not be included in the normal versioned part or the library. Signed-off-by: Karel Zak --- diff --git a/shlibs/uuid/src/uuid.sym b/shlibs/uuid/src/uuid.sym index d859ca7266..2cad51bc6f 100644 --- a/shlibs/uuid/src/uuid.sym +++ b/shlibs/uuid/src/uuid.sym @@ -22,14 +22,6 @@ global: uuid_time; uuid_type; uuid_variant; - - /* __uuid_* this is not part of the official API, this is - * uuidd (uuid daemon) specific stuff. Hell. - */ - __uuid_generate_time; - __uuid_generate_random; -local: - *; }; /* @@ -39,3 +31,16 @@ UUID_2.20 { global: uuid_generate_time_safe; } UUID_1.0; + + +/* + * __uuid_* this is not part of the official API, this is + * uuidd (uuid daemon) specific stuff. Hell. + */ +UUIDD_PRIVATE { +global: + __uuid_generate_time; + __uuid_generate_random; +local: + *; +};