Skip to content

Commit c6a48ef

Browse files
authored
Rollup merge of #130254 - GrigorenkoPV:QuotaExceeded, r=dtolnay
Stabilize `std::io::ErrorKind::QuotaExceeded` Also drop "Filesystem" from its name. See #130190 for more info. FCP in #130190 cc #86442 r? `@dtolnay`
2 parents a5c6dd8 + 3b50c3e commit c6a48ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shims/io_error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const UNIX_IO_ERROR_TABLE: &[(&str, std::io::ErrorKind)] = {
4444
("ECONNREFUSED", ConnectionRefused),
4545
("ECONNRESET", ConnectionReset),
4646
("EDEADLK", Deadlock),
47-
("EDQUOT", FilesystemQuotaExceeded),
47+
("EDQUOT", QuotaExceeded),
4848
("EEXIST", AlreadyExists),
4949
("EFBIG", FileTooLarge),
5050
("EHOSTUNREACH", HostUnreachable),

0 commit comments

Comments
 (0)