diff options
| author | Jeremy Allison <jra@samba.org> | 2011-05-05 10:41:59 -0700 | 
|---|---|---|
| committer | Jeremy Allison <jra@samba.org> | 2011-05-05 10:41:59 -0700 | 
| commit | 4f41be356a4e6b311d30de3b2e36e4c33aa72ca3 (patch) | |
| tree | 91adb9035c762c36a6cb24f242c11408779bd3f7 /source3/lib/tldap.c | |
| parent | 10a628b6e181af07f0c43db36ba017411b4eaaaa (diff) | |
| download | samba-4f41be356a4e6b311d30de3b2e36e4c33aa72ca3.tar.gz samba-4f41be356a4e6b311d30de3b2e36e4c33aa72ca3.tar.bz2 samba-4f41be356a4e6b311d30de3b2e36e4c33aa72ca3.zip  | |
Fix many const compiler warnings.
Diffstat (limited to 'source3/lib/tldap.c')
| -rw-r--r-- | source3/lib/tldap.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/lib/tldap.c b/source3/lib/tldap.c index ba27028649..3afdaea419 100644 --- a/source3/lib/tldap.c +++ b/source3/lib/tldap.c @@ -189,7 +189,7 @@ bool tldap_context_setattr(struct tldap_context *ld,  	struct tldap_ctx_attribute *tmp, *attr;  	char *tmpname;  	int num_attrs; -	void **pptr = (void **)_pptr; +	void **pptr = (void **)discard_const_p(void,_pptr);  	attr = tldap_context_findattr(ld, name);  	if (attr != NULL) { @@ -935,10 +935,10 @@ struct tevent_req *tldap_simple_bind_send(TALLOC_CTX *mem_ctx,  	DATA_BLOB cred;  	if (passwd != NULL) { -		cred.data = (uint8_t *)passwd; +		cred.data = discard_const_p(uint8_t, passwd);  		cred.length = strlen(passwd);  	} else { -		cred.data = (uint8_t *)""; +		cred.data = discard_const_p(uint8_t, "");  		cred.length = 0;  	}  	return tldap_sasl_bind_send(mem_ctx, ev, ld, dn, NULL, &cred, NULL, 0, @@ -956,10 +956,10 @@ int tldap_simple_bind(struct tldap_context *ld, const char *dn,  	DATA_BLOB cred;  	if (passwd != NULL) { -		cred.data = (uint8_t *)passwd; +		cred.data = discard_const_p(uint8_t, passwd);  		cred.length = strlen(passwd);  	} else { -		cred.data = (uint8_t *)""; +		cred.data = discard_const_p(uint8_t, "");  		cred.length = 0;  	}  	return tldap_sasl_bind(ld, dn, NULL, &cred, NULL, 0, NULL, 0);  | 
