netstack: Do not quit at error

This commit is contained in:
Wildan M
2025-11-23 22:09:20 -08:00
parent 1145e908f1
commit e65fbb6537
2 changed files with 9 additions and 8 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ impl std::error::Error for Error {}
impl convert::From<IOError> for Error {
fn from(e: IOError) -> Self {
Error::from_io_error(e, "")
Error::from_io_error(e, "generic error")
}
}