diff options
author | Stefan Metzmacher <metze@samba.org> | 2005-01-31 16:06:21 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:09:26 -0500 |
commit | d8d3a5ffe3fb73d64869c133fe398efeb4e79d77 (patch) | |
tree | d5f31ebd3c6d29b316de98289ef9789c5cf2b405 /source4/libcli | |
parent | f0d97d27aefa746f7c925296a2e4fa4d57b3219d (diff) | |
download | samba-d8d3a5ffe3fb73d64869c133fe398efeb4e79d77.tar.gz samba-d8d3a5ffe3fb73d64869c133fe398efeb4e79d77.tar.bz2 samba-d8d3a5ffe3fb73d64869c133fe398efeb4e79d77.zip |
r5137: fix types
metze
(This used to be commit add1c579375d08040f722946da31ee3862f9e7ac)
Diffstat (limited to 'source4/libcli')
-rw-r--r-- | source4/libcli/ldap/ldap.c | 2 | ||||
-rw-r--r-- | source4/libcli/security/security_descriptor.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source4/libcli/ldap/ldap.c b/source4/libcli/ldap/ldap.c index eab94bb194..655838b64f 100644 --- a/source4/libcli/ldap/ldap.c +++ b/source4/libcli/ldap/ldap.c @@ -1220,7 +1220,7 @@ BOOL ldap_decode(struct asn1_data *data, struct ldap_message *msg) } BOOL ldap_parse_basic_url(TALLOC_CTX *mem_ctx, const char *url, - char **host, uint16 *port, BOOL *ldaps) + char **host, uint16_t *port, BOOL *ldaps) { int tmp_port = 0; char protocol[11]; diff --git a/source4/libcli/security/security_descriptor.c b/source4/libcli/security/security_descriptor.c index bbfee31fbe..77d296235a 100644 --- a/source4/libcli/security/security_descriptor.c +++ b/source4/libcli/security/security_descriptor.c @@ -194,7 +194,7 @@ BOOL security_descriptor_equal(const struct security_descriptor *sd1, */ BOOL security_descriptor_mask_equal(const struct security_descriptor *sd1, const struct security_descriptor *sd2, - uint32 mask) + uint32_t mask) { if (sd1 == sd2) return True; if (!sd1 || !sd2) return False; |