From a512cc80890a2183d5643d8324fb9dc13fca1e9e Mon Sep 17 00:00:00 2001 From: TAKAHASHI Motonobu Date: Sun, 16 Nov 2008 13:17:16 +0100 Subject: [PATCH 1/1] Fix bug 5901: Default for streams_depot location --- source/modules/vfs_streams_depot.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/source/modules/vfs_streams_depot.c b/source/modules/vfs_streams_depot.c index d8c476f96f4c..e7ecedaaed2b 100644 --- a/source/modules/vfs_streams_depot.c +++ b/source/modules/vfs_streams_depot.c @@ -117,9 +117,17 @@ static char *stream_dir(vfs_handle_struct *handle, const char *base_path, struct file_id id; uint8 id_buf[16]; + tmp = talloc_asprintf(talloc_tos(), "%s/.streams", handle->conn->connectpath); + + if (tmp == NULL) { + errno = ENOMEM; + goto fail; + } + const char *rootdir = lp_parm_const_string( SNUM(handle->conn), "streams_depot", "directory", - handle->conn->connectpath); + tmp); + TALLOC_FREE(tmp); if (base_sbuf == NULL) { if (SMB_VFS_NEXT_STAT(handle, base_path, &sbuf) == -1) { -- 2.34.1