From 7c2b79ea484089eb9e4544ebb13efff2d644c9a7 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 1 Aug 2006 09:06:18 +0000 Subject: r17356: Also transfer the sambaHomePath attribute. Volker (This used to be commit 49ad0d4d0eea85ef133e1a5c055305e06de109de) --- source3/utils/net_rpc_samsync.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source3') diff --git a/source3/utils/net_rpc_samsync.c b/source3/utils/net_rpc_samsync.c index af38abf255..298a7c7c43 100644 --- a/source3/utils/net_rpc_samsync.c +++ b/source3/utils/net_rpc_samsync.c @@ -1579,6 +1579,10 @@ static NTSTATUS fetch_account_info_to_ldif(SAM_DELTA_CTR *delta, unistr2_to_ascii(homedrive, &(delta->account_info.uni_dir_drive), sizeof(homedrive)-1); + /* Get the home path */ + unistr2_to_ascii(homepath, &(delta->account_info.uni_home_dir), + sizeof(homepath)-1); + /* Get the description */ unistr2_to_ascii(description, &(delta->account_info.uni_acct_desc), sizeof(description)-1); -- cgit