diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-12-06 21:21:04 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-06 21:21:04 +0100 |
| commit | d0fe04e22b8cfcd435f82c5d13286aca6d556d3c (patch) | |
| tree | fe348794a171b94cc21693399f8f11244c8b7024 /library/std/src/sys/pal/unix/mod.rs | |
| parent | 14710ec4edeb0abccb4aa8248ab18508b18e32de (diff) | |
| parent | eb5203233a20e15c9f8f0796cd82e9170c6466f9 (diff) | |
| download | rust-d0fe04e22b8cfcd435f82c5d13286aca6d556d3c.tar.gz rust-d0fe04e22b8cfcd435f82c5d13286aca6d556d3c.zip | |
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`
Diffstat (limited to 'library/std/src/sys/pal/unix/mod.rs')
| -rw-r--r-- | library/std/src/sys/pal/unix/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sys/pal/unix/mod.rs b/library/std/src/sys/pal/unix/mod.rs index 8eaa50d7f81..3cc1cae8d00 100644 --- a/library/std/src/sys/pal/unix/mod.rs +++ b/library/std/src/sys/pal/unix/mod.rs @@ -254,7 +254,7 @@ pub fn decode_error_kind(errno: i32) -> ErrorKind { libc::ECONNREFUSED => ConnectionRefused, libc::ECONNRESET => ConnectionReset, libc::EDEADLK => Deadlock, - libc::EDQUOT => FilesystemQuotaExceeded, + libc::EDQUOT => QuotaExceeded, libc::EEXIST => AlreadyExists, libc::EFBIG => FileTooLarge, libc::EHOSTUNREACH => HostUnreachable, |
