Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions iocore/cache/CacheRead.cc
Original file line number Diff line number Diff line change
Expand Up @@ -908,7 +908,7 @@ CacheVC::openReadStartEarliest(int /* event ATS_UNUSED */, Event * /* e ATS_UNUS
if (doc->magic == DOC_CORRUPT) {
Warning("Earliest: Doc checksum does not match for %s", key.toHexStr(tmpstring));
} else {
Warning("Earliest : Doc magic does not match for %s", key.toHexStr(tmpstring));
Warning("Earliest: Doc magic does not match for %s", key.toHexStr(tmpstring));
}
// remove the dir entry
dir_delete(&key, vol, &dir);
Expand Down Expand Up @@ -1111,7 +1111,7 @@ CacheVC::openReadStartHead(int event, Event *e)
if (doc->magic == DOC_CORRUPT) {
Warning("Head: Doc checksum does not match for %s", key.toHexStr(tmpstring));
} else {
Warning("Head : Doc magic does not match for %s", key.toHexStr(tmpstring));
Warning("Head: Doc magic does not match for %s", key.toHexStr(tmpstring));
}
// remove the dir entry
dir_delete(&key, vol, &dir);
Expand Down