diff options
author | Tim Potter <tpot@samba.org> | 2003-06-13 04:35:53 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-06-13 04:35:53 +0000 |
commit | 0a9396dcca1e30fa32fbcde3ee2dce86f586ba4b (patch) | |
tree | 7ccac6f82746bf5410dbe25f69aebfe949995cf4 /source3/libads | |
parent | 61742d1117e12cbb131f9c55ab0a9acbcc1f4d3a (diff) | |
download | samba-0a9396dcca1e30fa32fbcde3ee2dce86f586ba4b.tar.gz samba-0a9396dcca1e30fa32fbcde3ee2dce86f586ba4b.tar.bz2 samba-0a9396dcca1e30fa32fbcde3ee2dce86f586ba4b.zip |
Rename some uuid functions so as not to conflict with system
versions. Fixes bug #154.
(This used to be commit 986eae40f7669d15dc75aed340e628aa7efafddc)
Diffstat (limited to 'source3/libads')
-rw-r--r-- | source3/libads/ldap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libads/ldap.c b/source3/libads/ldap.c index 3ce80975da..c685ed53ab 100644 --- a/source3/libads/ldap.c +++ b/source3/libads/ldap.c @@ -1142,7 +1142,7 @@ static void dump_guid(const char *field, struct berval **values) GUID guid; for (i=0; values[i]; i++) { memcpy(guid.info, values[i]->bv_val, sizeof(guid.info)); - printf("%s: %s\n", field, uuid_string_static(guid)); + printf("%s: %s\n", field, smb_uuid_string_static(guid)); } } |