stub out set_oflags for unix i guess?

what do we do about unsupported stuff like that? silently return OK?
This commit is contained in:
Pat Hickey
2020-12-10 15:37:02 -08:00
parent cdb642b3d6
commit 03c92de5aa
3 changed files with 19 additions and 4 deletions

View File

@@ -75,6 +75,7 @@ impl From<Error> for types::Errno {
Error::DirNotCapable { .. } => Errno::Notcapable,
Error::NotCapable => Errno::Notcapable,
Error::TableOverflow => Errno::Overflow,
Error::Unsupported { .. } => Errno::Notcapable, // XXX is this reasonable?
}
}
}