From a27609822b3d34c2cccd71e9b2ea8a4972a44699 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Fri, 3 Jun 2005 14:07:50 +0000 Subject: r7233: what about filling that new element ? (This used to be commit 6a5e48c35cba801b16172cf6ff06b1d4116fb018) --- source4/auth/auth_util.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source4/auth/auth_util.c') diff --git a/source4/auth/auth_util.c b/source4/auth/auth_util.c index 8d5a95cee8..8c5bd4f057 100644 --- a/source4/auth/auth_util.c +++ b/source4/auth/auth_util.c @@ -79,6 +79,9 @@ NTSTATUS make_user_info(TALLOC_CTX *mem_ctx, user_info->workstation_name = talloc_strdup(user_info, workstation_name); NT_STATUS_HAVE_NO_MEMORY(user_info->workstation_name); + user_info->remote_host = talloc_strdup(user_info, remote_host); + NT_STATUS_HAVE_NO_MEMORY(user_info->remote_host); + DEBUG(5,("making blobs for %s's user_info struct\n", account_name)); if (lm_password) { -- cgit