diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-12-03 15:53:17 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:47:28 +0100 |
commit | ab69eb8d8901d23794c6a298718e67656ef4820e (patch) | |
tree | cd415ecd2aee4caa9e47f6c442d0d23b2f443b9c /source4/utils | |
parent | 0a2f1a46a02d2c9497d05d7e534829dc6e9430dc (diff) | |
download | samba-ab69eb8d8901d23794c6a298718e67656ef4820e.tar.gz samba-ab69eb8d8901d23794c6a298718e67656ef4820e.tar.bz2 samba-ab69eb8d8901d23794c6a298718e67656ef4820e.zip |
r26250: Avoid global_loadparm in a couple more places.
(This used to be commit 2c6b755309fdf685cd0b0564272bf83038574a43)
Diffstat (limited to 'source4/utils')
-rw-r--r-- | source4/utils/ntlm_auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/utils/ntlm_auth.c b/source4/utils/ntlm_auth.c index 8b767c8436..f76eb8390a 100644 --- a/source4/utils/ntlm_auth.c +++ b/source4/utils/ntlm_auth.c @@ -226,7 +226,7 @@ static NTSTATUS local_pw_check_specified(struct loadparm_context *lp_ctx, if (unix_name) { asprintf(unix_name, "%s%c%s", domain, - *lp_winbind_separator(global_loadparm), + *lp_winbind_separator(lp_ctx), username); } } else { |