Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
This commit is contained in:
Fabian Grünbichler 2023-01-04 12:05:58 +01:00
parent 867ce3587b
commit 7be0a3fd1f

View File

@ -1326,7 +1326,7 @@ impl DataStore {
}
let file = std::fs::File::open(self.base_path())?;
let fd = file.as_raw_fd();
log::info!("syncinc filesystem");
log::info!("syncing filesystem");
if unsafe { libc::syncfs(fd) } < 0 {
bail!("error during syncfs: {}", std::io::Error::last_os_error());
}