Skip to content

Commit fde9f6b

Browse files
committed
Map WSAEDQUOT to ErrorKind::FilesystemQuotaExceeded
1 parent 22c4e8e commit fde9f6b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

std/src/sys/pal/windows/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ pub fn decode_error_kind(errno: i32) -> ErrorKind {
139139
c::WSAEHOSTUNREACH => HostUnreachable,
140140
c::WSAENETDOWN => NetworkDown,
141141
c::WSAENETUNREACH => NetworkUnreachable,
142+
c::WSAEDQUOT => FilesystemQuotaExceeded,
142143

143144
_ => Uncategorized,
144145
}

0 commit comments

Comments
 (0)