forked from Bananymous/banan-os
LibC: Remove errno EEXISTS
I don't know why I had added this. It doesn't seem to be a thing on either POSIX or linux. This was literally equivalent to EXIST
This commit is contained in:
@@ -534,7 +534,7 @@ done:
|
||||
|
||||
auto error_or = find_inode_impl(name);
|
||||
if (!error_or.is_error())
|
||||
return BAN::Error::from_errno(EEXISTS);
|
||||
return BAN::Error::from_errno(EEXIST);
|
||||
if (error_or.error().get_error_code() != ENOENT)
|
||||
return error_or.error();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user