diff options
author | Volker Lendecke <vlendec@samba.org> | 2006-08-01 09:06:18 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:38:28 -0500 |
commit | 7c2b79ea484089eb9e4544ebb13efff2d644c9a7 (patch) | |
tree | 7cddceee51d21cbe9a80c959b97591944ae2d7b6 /source3 | |
parent | 16bf23d973b899f570b6793cf52507086d74d66a (diff) | |
download | samba-7c2b79ea484089eb9e4544ebb13efff2d644c9a7.tar.gz samba-7c2b79ea484089eb9e4544ebb13efff2d644c9a7.tar.bz2 samba-7c2b79ea484089eb9e4544ebb13efff2d644c9a7.zip |
r17356: Also transfer the sambaHomePath attribute.
Volker
(This used to be commit 49ad0d4d0eea85ef133e1a5c055305e06de109de)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/utils/net_rpc_samsync.c | 4 |
1 files changed, 4 insertions, 0 deletions
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); |