Skip to content

Commit 5cc02ed

Browse files
authored
Merge pull request #4081 from rust-lang/rustup-2024-12-08
Automatic Rustup
2 parents 35b6409 + 572c25e commit 5cc02ed

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

rust-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
75716b45105e443199ce9800c7009ddfd6d2be53
1+
728f2daab42ba8f1b3d5caab62495798d1eabfa1

src/shims/io_error.rs

Lines changed: 3 additions & 3 deletions
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),
@@ -99,8 +99,8 @@ const WINDOWS_IO_ERROR_TABLE: &[(&str, std::io::ErrorKind)] = {
9999
("ERROR_POSSIBLE_DEADLOCK", Deadlock),
100100
("ERROR_DIR_NOT_EMPTY", DirectoryNotEmpty),
101101
("ERROR_CANT_RESOLVE_FILENAME", FilesystemLoop),
102-
("ERROR_DISK_QUOTA_EXCEEDED", FilesystemQuotaExceeded),
103-
("WSAEDQUOT", FilesystemQuotaExceeded),
102+
("ERROR_DISK_QUOTA_EXCEEDED", QuotaExceeded),
103+
("WSAEDQUOT", QuotaExceeded),
104104
("ERROR_FILE_TOO_LARGE", FileTooLarge),
105105
("ERROR_HOST_UNREACHABLE", HostUnreachable),
106106
("WSAEHOSTUNREACH", HostUnreachable),

0 commit comments

Comments
 (0)