From 203710ea6d74a6ff17ed3c2d718022242384ee3a Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 26 Nov 2003 09:58:41 +0000 Subject: Get rid of a const warning Volker (This used to be commit 94860687c535ace0c962ca3fe7da59df05325c62) --- source3/utils/net_ads.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/utils') diff --git a/source3/utils/net_ads.c b/source3/utils/net_ads.c index cad93608dc..9404ae4b24 100644 --- a/source3/utils/net_ads.c +++ b/source3/utils/net_ads.c @@ -209,7 +209,7 @@ static int net_ads_workgroup(int argc, const char **argv) { ADS_STRUCT *ads; TALLOC_CTX *ctx; - char *workgroup; + const char *workgroup; if (!(ads = ads_startup())) return -1; @@ -656,7 +656,7 @@ int net_ads_join(int argc, const char **argv) char *ou_str; uint32 sec_channel_type = SEC_CHAN_WKSTA; uint32 account_type = UF_WORKSTATION_TRUST_ACCOUNT; - char *short_domain_name = NULL; + const char *short_domain_name = NULL; TALLOC_CTX *ctx = NULL; if (argc > 0) org_unit = argv[0]; -- cgit