summaryrefslogtreecommitdiffstats
path: root/source/smbd
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2006-08-08 11:00:16 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:38:34 -0500
commitf9bef1f08f7d2a4c95c28329ac73e8646f033998 (patch)
tree7e985563f7bf3692745fd488398e3148d46a6b7f /source/smbd
parente4b8c79a9d6f7323953121887af4f482d04a9228 (diff)
downloadsamba-f9bef1f08f7d2a4c95c28329ac73e8646f033998.tar.gz
samba-f9bef1f08f7d2a4c95c28329ac73e8646f033998.tar.xz
samba-f9bef1f08f7d2a4c95c28329ac73e8646f033998.zip
r17453: Fix msdfs RPC management (this broke with the autogenerated dfs rpcs).
* Remove "unknown" from dfs_Enum (samba4 dfs IDL updates to follow). * When encountering an unsupported infolevel the rpc server must reply with a dfs_info_0 structure and WERR_OK (observed from w2k3 when talking to nt4). Guenther
Diffstat (limited to 'source/smbd')
-rw-r--r--source/smbd/msdfs.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/smbd/msdfs.c b/source/smbd/msdfs.c
index 2edad311ea4..44415ddd16f 100644
--- a/source/smbd/msdfs.c
+++ b/source/smbd/msdfs.c
@@ -901,6 +901,7 @@ BOOL create_junction(char *pathname, struct junction_map *jucn)
pstrcpy(jucn->service_name,dp.servicename);
pstrcpy(jucn->volume_name,dp.reqpath);
+ pstrcpy(jucn->comment, lp_comment(lp_servicenumber(dp.servicename)));
return True;
}