From 964d46138d2d440a7621663f82df92daff59f784 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 22 Sep 2004 23:51:17 +0000 Subject: r2543: Catch one more use of sub_get_remote_machine(). Andrew Bartlett (This used to be commit d483d88674f1f130bc27c3de379753ae1799330e) --- source4/auth/auth_util.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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, -- cgit