From 720ea1e3046426ae6c03b0654211cd99ea7cc6e0 Mon Sep 17 00:00:00 2001 From: Luke Leighton Date: Wed, 1 Dec 1999 20:18:59 +0000 Subject: make sure domain and name to generate trust account .mac file are upper case. (This used to be commit fbfb350bdf17e84b512b745527886d942904b67d) --- source3/rpcclient/cmd_samr.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source3') diff --git a/source3/rpcclient/cmd_samr.c b/source3/rpcclient/cmd_samr.c index 9cbd24f2b1..476ea08ea8 100644 --- a/source3/rpcclient/cmd_samr.c +++ b/source3/rpcclient/cmd_samr.c @@ -790,6 +790,9 @@ void cmd_sam_create_dom_user(struct client_info *info, int argc, char *argv[]) nt_owf_genW(&upw, ntpw); + strupper(domain); + strupper(name); + report(out_hnd, "Join %s to Domain %s", name, domain); if (create_trust_account_file(domain, name, ntpw)) { -- cgit