From e942ca4e0a2a28ad5132abb2bf165f064d792c44 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Thu, 15 Jun 2006 16:09:31 +0000 Subject: r16261: Smaller fixes for net ads password. Guenther (This used to be commit 689ae22c80a890278610d9ada1eb4fa5e37bd5ce) --- source3/utils/net_ads.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/utils/net_ads.c b/source3/utils/net_ads.c index e82eece0f9..0393644494 100644 --- a/source3/utils/net_ads.c +++ b/source3/utils/net_ads.c @@ -1472,7 +1472,7 @@ static int net_ads_password(int argc, const char **argv) /* use the realm so we can eventually change passwords for users in realms other than default */ - if (!(ads = ads_init(realm, NULL, NULL))) { + if (!(ads = ads_init(realm, opt_workgroup, NULL))) { return -1; } @@ -1496,7 +1496,7 @@ static int net_ads_password(int argc, const char **argv) ret = kerberos_set_password(ads->auth.kdc_server, auth_principal, auth_password, user, new_password, ads->auth.time_offset); if (!ADS_ERR_OK(ret)) { - d_fprintf(stderr, "Password change failed :-( ...\n"); + d_fprintf(stderr, "Password change failed: %s\n", ads_errstr(ret)); ads_destroy(&ads); return -1; } -- cgit