diff options
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_shadow_copy2.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/source3/modules/vfs_shadow_copy2.c b/source3/modules/vfs_shadow_copy2.c index aa7e50ff51..dd66010cfb 100644 --- a/source3/modules/vfs_shadow_copy2.c +++ b/source3/modules/vfs_shadow_copy2.c @@ -1030,7 +1030,8 @@ static bool shadow_copy2_snapshot_to_gmt(vfs_handle_struct *handle, ZERO_STRUCT(timestamp); if (lp_parm_bool(SNUM(handle->conn), "shadow", "sscanf", false)) { if (sscanf(name, fmt, ×tamp_long) != 1) { - DEBUG(10, ("shadow_copy2_snapshot_to_gmt: no sscanf match %s: %s\n", + DEBUG(10, ("shadow_copy2_snapshot_to_gmt: " + "no sscanf match %s: %s\n", fmt, name)); return false; } @@ -1038,11 +1039,13 @@ static bool shadow_copy2_snapshot_to_gmt(vfs_handle_struct *handle, gmtime_r(×tamp_t, ×tamp); } else { if (strptime(name, fmt, ×tamp) == NULL) { - DEBUG(10, ("shadow_copy2_snapshot_to_gmt: no match %s: %s\n", + DEBUG(10, ("shadow_copy2_snapshot_to_gmt: " + "no match %s: %s\n", fmt, name)); return false; } - DEBUG(10, ("shadow_copy2_snapshot_to_gmt: match %s: %s\n", fmt, name)); + DEBUG(10, ("shadow_copy2_snapshot_to_gmt: match %s: %s\n", + fmt, name)); if (lp_parm_bool(SNUM(handle->conn), "shadow", "localtime", false)) { timestamp.tm_isdst = -1; |