1
0
mirror of https://github.com/gilbertchen/duplicacy synced 2025-12-15 15:53:26 +00:00

Fix typos

This commit is contained in:
Gilbert Chen
2017-12-15 08:24:15 -05:00
parent f6ef9094bc
commit f944e01a02

View File

@@ -817,7 +817,7 @@ func (manager *SnapshotManager) CheckSnapshots(snapshotID string, revisionsToChe
if !found { if !found {
if !searchFossils { if !searchFossils {
missingChunks += 1 missingChunks += 1
LOG_WARN("SNAPHOST_VALIDATE", LOG_WARN("SNAPSHOT_VALIDATE",
"Chunk %s referenced by snapshot %s at revision %d does not exist", "Chunk %s referenced by snapshot %s at revision %d does not exist",
chunkID, snapshotID, revision) chunkID, snapshotID, revision)
continue continue
@@ -825,14 +825,14 @@ func (manager *SnapshotManager) CheckSnapshots(snapshotID string, revisionsToChe
chunkPath, exist, size, err := manager.storage.FindChunk(0, chunkID, true) chunkPath, exist, size, err := manager.storage.FindChunk(0, chunkID, true)
if err != nil { if err != nil {
LOG_ERROR("SNAPHOST_VALIDATE", "Failed to check the existence of chunk %s: %v", LOG_ERROR("SNAPSHOT_VALIDATE", "Failed to check the existence of chunk %s: %v",
chunkID, err) chunkID, err)
return false return false
} }
if !exist { if !exist {
missingChunks += 1 missingChunks += 1
LOG_WARN("SNAPHOST_VALIDATE", LOG_WARN("SNAPSHOT_VALIDATE",
"Chunk %s referenced by snapshot %s at revision %d does not exist", "Chunk %s referenced by snapshot %s at revision %d does not exist",
chunkID, snapshotID, revision) chunkID, snapshotID, revision)
continue continue
@@ -841,7 +841,7 @@ func (manager *SnapshotManager) CheckSnapshots(snapshotID string, revisionsToChe
if resurrect { if resurrect {
manager.resurrectChunk(chunkPath, chunkID) manager.resurrectChunk(chunkPath, chunkID)
} else { } else {
LOG_WARN("SNAPHOST_FOSSIL", "Chunk %s referenced by snapshot %s at revision %d "+ LOG_WARN("SNAPSHOT_FOSSIL", "Chunk %s referenced by snapshot %s at revision %d "+
"has been marked as a fossil", chunkID, snapshotID, revision) "has been marked as a fossil", chunkID, snapshotID, revision)
} }