summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2006-09-19 01:07:40 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:00:44 -0500
commit664c3f41660847c110ba81759f71a70c88807a76 (patch)
treed62f4e1b1f3235751abe8c5c70df998e42736269 /source3
parenta03627afadcb2f391a9a482c6d1efbfdb48e9b53 (diff)
downloadsamba-664c3f41660847c110ba81759f71a70c88807a76.tar.gz
samba-664c3f41660847c110ba81759f71a70c88807a76.tar.bz2
samba-664c3f41660847c110ba81759f71a70c88807a76.zip
r18663: Fix one more uuid -> GUID.
Jeremy. (This used to be commit e568271af2b5c20cff70b72b8ab4b1b704122b40)
Diffstat (limited to 'source3')
-rw-r--r--source3/include/ads_protos.h2
-rw-r--r--source3/libads/ldap.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/ads_protos.h b/source3/include/ads_protos.h
index 6eb4f10f65..a566714d62 100644
--- a/source3/include/ads_protos.h
+++ b/source3/include/ads_protos.h
@@ -20,7 +20,7 @@ char **ads_pull_strings_range(ADS_STRUCT *ads,
BOOL *more_strings);
BOOL ads_pull_uint32(ADS_STRUCT *ads, LDAPMessage *msg, const char *field,
uint32 *v);
-BOOL ads_pull_guid(ADS_STRUCT *ads, LDAPMessage *msg, struct uuid *guid);
+BOOL ads_pull_guid(ADS_STRUCT *ads, LDAPMessage *msg, struct GUID *guid);
BOOL ads_pull_sid(ADS_STRUCT *ads, LDAPMessage *msg, const char *field,
DOM_SID *sid);
int ads_pull_sids(ADS_STRUCT *ads, TALLOC_CTX *mem_ctx,
diff --git a/source3/libads/ldap.c b/source3/libads/ldap.c
index 7b31586f7d..f9bdb9c651 100644
--- a/source3/libads/ldap.c
+++ b/source3/libads/ldap.c
@@ -2089,7 +2089,7 @@ int ads_count_replies(ADS_STRUCT *ads, void *res)
* @param guid 37-byte area to receive text guid
* @return boolean indicating success
**/
- BOOL ads_pull_guid(ADS_STRUCT *ads, LDAPMessage *msg, struct uuid *guid)
+ BOOL ads_pull_guid(ADS_STRUCT *ads, LDAPMessage *msg, struct GUID *guid)
{
char **values;
UUID_FLAT flat_guid;