]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
libuuid: move __uuid function to UUIDD_PRIVATE in uuid.sym
authorKarel Zak <kzak@redhat.com>
Wed, 16 Feb 2011 15:36:18 +0000 (16:36 +0100)
committerKarel Zak <kzak@redhat.com>
Wed, 16 Feb 2011 15:36:18 +0000 (16:36 +0100)
The private functions for uuidd should not be included in the normal
versioned part or the library.

Signed-off-by: Karel Zak <kzak@redhat.com>
shlibs/uuid/src/uuid.sym

index d859ca7266cf73ccd2051927d7203b36e25c0a8c..2cad51bc6f168053683543deaf6962c9e8479498 100644 (file)
@@ -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:
+       *;
+};