diff options
author | Tim Potter <tpot@samba.org> | 2002-11-17 01:14:30 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-11-17 01:14:30 +0000 |
commit | 4cb48b91548571e1a40cda3043a55636a18aa978 (patch) | |
tree | 94a13ca600d19fb7fe2778481ce6be4450295fbb /source3 | |
parent | ab539de20f9db300a1476a85bf768548c7280b68 (diff) | |
download | samba-4cb48b91548571e1a40cda3043a55636a18aa978.tar.gz samba-4cb48b91548571e1a40cda3043a55636a18aa978.tar.bz2 samba-4cb48b91548571e1a40cda3043a55636a18aa978.zip |
Renamed uuid_to_string() to guid_to_string() to avoid conflict with OSF DEC
headers.
(This used to be commit d813997c5a66f786b191459de0dd030f4a1c539e)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/lib/util_uuid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util_uuid.c b/source3/lib/util_uuid.c index 1543094d40..699f2cd632 100644 --- a/source3/lib/util_uuid.c +++ b/source3/lib/util_uuid.c @@ -71,7 +71,7 @@ void uuid_generate_random(GUID *out) uuid_pack(&uu, out); } -char *uuid_to_string(const GUID in) +char *guid_to_string(const GUID in) { struct uuid uu; char *out; |