summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2013-05-29 23:57:30 +0200
committerKarolin Seeger <kseeger@samba.org>2014-01-13 10:17:22 +0100
commitcbebc8f9454d46394d9d1ea1f1193dadb560f5f7 (patch)
tree362b020e2e298d49f9ad16201ffd27d6d125d26a
parent151774ed18f9e90b9d9720c1050ab1f924578f59 (diff)
downloadsamba-cbebc8f9454d46394d9d1ea1f1193dadb560f5f7.tar.gz
shadow_copy2: add some debug to shadow_copy2_strip_snapshot()
Signed-off-by: Michael Adam <obnox@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org> (cherry picked from commit afcb84e69f46671030710bdda1c8798235b9ace7)
-rw-r--r--source3/modules/vfs_shadow_copy2.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/source3/modules/vfs_shadow_copy2.c b/source3/modules/vfs_shadow_copy2.c
index 7fd53807f52..528245ae81b 100644
--- a/source3/modules/vfs_shadow_copy2.c
+++ b/source3/modules/vfs_shadow_copy2.c
@@ -311,6 +311,8 @@ static bool shadow_copy2_strip_snapshot(TALLOC_CTX *mem_ctx,
SMB_VFS_HANDLE_GET_DATA(handle, config, struct shadow_copy2_config,
return false);
+ DEBUG(10, (__location__ ": enter path '%s'\n", name));
+
p = strstr_m(name, "@GMT-");
if (p == NULL) {
goto no_snapshot;
@@ -366,11 +368,19 @@ static bool shadow_copy2_strip_snapshot(TALLOC_CTX *mem_ctx,
return false;
}
+ DEBUG(10, (__location__ ": snapdirseverywhere mode.\n"
+ "path '%s'.\n"
+ "insert string '%s'\n", name, insert));
+
have_insert = (strstr(name, insert+1) != NULL);
- TALLOC_FREE(insert);
if (have_insert) {
+ DEBUG(10, (__location__ ": insert string '%s' found in "
+ "path '%s' found in snapdirseverywhere mode "
+ "==> already converted\n", insert, name));
+ TALLOC_FREE(insert);
goto no_snapshot;
}
+ TALLOC_FREE(insert);
}
if (pstripped != NULL) {