diff options
author | Andrew Bartlett <abartlet@samba.org> | 2004-09-22 23:51:17 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:59:04 -0500 |
commit | 964d46138d2d440a7621663f82df92daff59f784 (patch) | |
tree | bc36ce1d277cafbc8f6477e84a87024f621b2a4a | |
parent | 79ae828819193dd9ed5e060f78a88752e30bd1c3 (diff) | |
download | samba-964d46138d2d440a7621663f82df92daff59f784.tar.gz samba-964d46138d2d440a7621663f82df92daff59f784.tar.bz2 samba-964d46138d2d440a7621663f82df92daff59f784.zip |
r2543: Catch one more use of sub_get_remote_machine().
Andrew Bartlett
(This used to be commit d483d88674f1f130bc27c3de379753ae1799330e)
-rw-r--r-- | source4/auth/auth_util.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/auth/auth_util.c b/source4/auth/auth_util.c index cc8693c5fc..3c77faefe1 100644 --- a/source4/auth/auth_util.c +++ b/source4/auth/auth_util.c @@ -239,11 +239,12 @@ NTSTATUS make_user_info_netlogon_interactive(struct auth_usersupplied_info **use NTSTATUS make_user_info_for_reply_enc(struct auth_usersupplied_info **user_info, const char *smb_name, const char *client_domain, + const char *remote_machine, DATA_BLOB lm_resp, DATA_BLOB nt_resp) { return make_user_info_map(user_info, smb_name, client_domain, - sub_get_remote_machine(), + remote_machine, lm_resp.data ? &lm_resp : NULL, nt_resp.data ? &nt_resp : NULL, NULL, NULL, NULL, |