diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-05-25 16:24:13 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:56:15 -0500 |
commit | f9d8f8843dc0ab8c9d59abde7222e0f118b86b5d (patch) | |
tree | 8c6360be102dee63e893526ac7128e9cd52d362c /source4/utils/net_ads_cldap.c | |
parent | 59e739a2f9f4b10f5f6184ef397f034d09959f26 (diff) | |
download | samba-f9d8f8843dc0ab8c9d59abde7222e0f118b86b5d.tar.gz samba-f9d8f8843dc0ab8c9d59abde7222e0f118b86b5d.tar.bz2 samba-f9d8f8843dc0ab8c9d59abde7222e0f118b86b5d.zip |
r884: convert samba4 to use [u]int32_t instead of [u]int32
metze
(This used to be commit 0e5517d937a2eb7cf707991d1c7498c1ab456095)
Diffstat (limited to 'source4/utils/net_ads_cldap.c')
-rw-r--r-- | source4/utils/net_ads_cldap.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source4/utils/net_ads_cldap.c b/source4/utils/net_ads_cldap.c index 132238533d..fd3ded8e82 100644 --- a/source4/utils/net_ads_cldap.c +++ b/source4/utils/net_ads_cldap.c @@ -25,14 +25,14 @@ #ifdef HAVE_ADS struct netlogon_string { - uint32 comp_len; + uint32_t comp_len; char **component; uint8 extra_flag; }; struct cldap_netlogon_reply { - uint32 type; - uint32 flags; + uint32_t type; + uint32_t flags; GUID guid; struct netlogon_string forest; @@ -47,7 +47,7 @@ struct cldap_netlogon_reply { struct netlogon_string unk0; - uint32 version; + uint32_t version; uint16 lmnt_token; uint16 lm20_token; }; @@ -160,7 +160,7 @@ static int recv_cldap_netlogon(int sock, struct cldap_netlogon_reply *reply) ASN1_DATA data; DATA_BLOB blob; DATA_BLOB os1, os2, os3; - uint32 i1; + uint32_t i1; char *p; blob = data_blob(NULL, 8192); |