From e47bce7822ca910cf360d41acf67d4d9b31dd2be Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 16 Feb 2011 16:36:18 +0100 Subject: [PATCH] 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 --- shlibs/uuid/src/uuid.sym | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) 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: + *; +}; -- 2.47.3