fix: Fix COMPRESSION typo, correct DIGEST log tag, and refactor mode_update cloning

This commit is contained in:
Andrew Phillips
2025-05-13 18:36:23 -03:00
committed by Andrew Phillips (aider)
parent eaeb83f12e
commit e7496b8978
3 changed files with 9 additions and 11 deletions

View File

@@ -97,7 +97,7 @@ pub trait CompressionEngine {
loop {
let n = reader.read(&mut buffer[..libc::BUFSIZ as usize])?;
if n == 0 {
debug!("COMPREESSION: EOF");
debug!("COMPRESSION: EOF");
break;
}