From 24ce9d52a644a8d7aa8e2ef3de1bb8cb644db410 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 1 Jun 2011 14:50:49 -0700 Subject: Fix const warning. --- source3/utils/net_ads.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/utils/net_ads.c b/source3/utils/net_ads.c index f712ddf220..69d5b102d4 100644 --- a/source3/utils/net_ads.c +++ b/source3/utils/net_ads.c @@ -2023,7 +2023,7 @@ static int net_ads_password(struct net_context *c, int argc, const char **argv) ADS_STRUCT *ads; const char *auth_principal = c->opt_user_name; const char *auth_password = c->opt_password; - char *realm = NULL; + const char *realm = NULL; const char *new_password = NULL; char *chr, *prompt; const char *user; -- cgit