summaryrefslogtreecommitdiff
path: root/source3/smbd/msdfs.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2005-12-12 18:21:59 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:05:48 -0500
commitfa4df827d0b7e6e280a1736fb45772ed27131e64 (patch)
tree59f3f63ce8eedb97e1988afe7491ff5b47155b48 /source3/smbd/msdfs.c
parentc9c8781ccf14271ac4baed838b59dcad50f8b742 (diff)
downloadsamba-fa4df827d0b7e6e280a1736fb45772ed27131e64.tar.gz
samba-fa4df827d0b7e6e280a1736fb45772ed27131e64.tar.bz2
samba-fa4df827d0b7e6e280a1736fb45772ed27131e64.zip
r12194: Ensure that when we set a connection path we've canonicalized
the name (must be abolute - start with /, must not end in /, must have ./ and ../ removed). Of course for realpath resolved paths this won't be the case but for others we need this name to be canonicalized. This name is going into the sharemode db for #3303 so needs to be in a normalized format. Jeremy. (This used to be commit 22e3300911809692b595f49e87d91e3111923e6a)
Diffstat (limited to 'source3/smbd/msdfs.c')
-rw-r--r--source3/smbd/msdfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/msdfs.c b/source3/smbd/msdfs.c
index a4f371b18f..1279fe185d 100644
--- a/source3/smbd/msdfs.c
+++ b/source3/smbd/msdfs.c
@@ -146,7 +146,7 @@ static BOOL create_conn_struct(connection_struct *conn, int snum, char *path)
return False;
}
- string_set(&conn->connectpath, connpath);
+ set_conn_connectpath(conn, connpath);
if (!smbd_vfs_init(conn)) {
DEBUG(0,("create_conn_struct: smbd_vfs_init failed.\n"));