summaryrefslogtreecommitdiff
path: root/source3/modules
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2013-05-31 17:17:27 +0200
committerAndrew Bartlett <abartlet@samba.org>2013-10-05 09:21:14 +1300
commitc4f9954ebb04da94a5bcd2cb328fb2fbaf9fa062 (patch)
tree9c355d586329c61de98be90764bf3ea6b7736b70 /source3/modules
parenta7ca55c8da6fbe6452a7a0bfc3c84b5941b8aa27 (diff)
downloadsamba-c4f9954ebb04da94a5bcd2cb328fb2fbaf9fa062.tar.gz
samba-c4f9954ebb04da94a5bcd2cb328fb2fbaf9fa062.tar.bz2
samba-c4f9954ebb04da94a5bcd2cb328fb2fbaf9fa062.zip
shadow_copy2: log resulting config at the end of shadow_copy2_connect()
Signed-off-by: Michael Adam <obnox@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source3/modules')
-rw-r--r--source3/modules/vfs_shadow_copy2.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/source3/modules/vfs_shadow_copy2.c b/source3/modules/vfs_shadow_copy2.c
index f3be5fefa3..4c8ee25678 100644
--- a/source3/modules/vfs_shadow_copy2.c
+++ b/source3/modules/vfs_shadow_copy2.c
@@ -1775,6 +1775,35 @@ static int shadow_copy2_connect(struct vfs_handle_struct *handle,
}
}
+ DEBUG(10, ("shadow_copy2_connect: configuration:\n"
+ " share root: '%s'\n"
+ " basedir: '%s'\n"
+ " mountpoint: '%s'\n"
+ " rel share root: '%s'\n"
+ " snapdir: '%s'\n"
+ " snapshot base path: '%s'\n"
+ " format: '%s'\n"
+ " use sscanf: %s\n"
+ " snapdirs everywhere: %s\n"
+ " cross mountpoints: %s\n"
+ " fix inodes: %s\n"
+ " sort order: %s\n"
+ "",
+ handle->conn->connectpath,
+ config->basedir,
+ config->mount_point,
+ config->rel_connectpath,
+ config->snapdir,
+ config->snapshot_basepath,
+ config->gmt_format,
+ config->use_sscanf ? "yes" : "no",
+ config->snapdirseverywhere ? "yes" : "no",
+ config->crossmountpoints ? "yes" : "no",
+ config->fixinodes ? "yes" : "no",
+ config->sort_order
+ ));
+
+
SMB_VFS_HANDLE_SET_DATA(handle, config,
NULL, struct shadow_copy2_config,
return -1);