diff options
author | Volker Lendecke <vlendec@samba.org> | 2003-11-26 10:01:31 +0000 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2003-11-26 10:01:31 +0000 |
commit | 449b2e42674180e43f2b4079466c0f43f8122035 (patch) | |
tree | a06a3befc066e69e132179885b2d6f8a5e70152f /source3/libads/ldap.c | |
parent | 52c1e60e68f8e906ce7c6a82b1c32f29cd546659 (diff) | |
download | samba-449b2e42674180e43f2b4079466c0f43f8122035.tar.gz samba-449b2e42674180e43f2b4079466c0f43f8122035.tar.bz2 samba-449b2e42674180e43f2b4079466c0f43f8122035.zip |
Get rid of a const warning
Volker
(This used to be commit ab1096d58e2447bc91370e0a7f913d9375658c4c)
Diffstat (limited to 'source3/libads/ldap.c')
-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 2ee8e6fe93..775a504f2b 100644 --- a/source3/libads/ldap.c +++ b/source3/libads/ldap.c @@ -1929,7 +1929,7 @@ bin/net -Uadministrator%XXXXX ads search '(&(objectclass=crossref)(dnsroot=VNET3 but you need to force the bind path to match the configurationNamingContext from the rootDSE */ -ADS_STATUS ads_workgroup_name(ADS_STRUCT *ads, TALLOC_CTX *mem_ctx, char **workgroup) +ADS_STATUS ads_workgroup_name(ADS_STRUCT *ads, TALLOC_CTX *mem_ctx, const char **workgroup) { char *expr; ADS_STATUS rc; |