summaryrefslogtreecommitdiff
path: root/src/error.rs
diff options
context:
space:
mode:
authorBen Bridle <bridle.benjamin@gmail.com>2025-04-15 13:14:53 +1200
committerBen Bridle <bridle.benjamin@gmail.com>2025-04-15 13:14:53 +1200
commitbd248e6ca6aeff660331ed9f0735c4063fa3de49 (patch)
treed91d5f9d30ff0fdc13996034516247a5867422f8 /src/error.rs
parent6e759a3abb3bc3e5da42d69a6f20ec2c31eb33de (diff)
downloadvagabond-bd248e6ca6aeff660331ed9f0735c4063fa3de49.zip
Remove nightly features
These weren't being used anyway.
Diffstat (limited to 'src/error.rs')
-rw-r--r--src/error.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/error.rs b/src/error.rs
index be0ebb7..5d875cd 100644
--- a/src/error.rs
+++ b/src/error.rs
@@ -50,8 +50,6 @@ fn io_error_to_entry_error(io_error: IoError) -> Result<EntryErrorKind, IoErrorK
IoErrorKind::NotFound => Ok(EntryErrorKind::NotFound),
// An intermediate path component was a plain file, not a directory
IoErrorKind::NotADirectory => Ok(EntryErrorKind::NotFound),
- // A cyclic symbolic link chain was included in the provided path
- IoErrorKind::FilesystemLoop => Ok(EntryErrorKind::NotFound),
IoErrorKind::PermissionDenied => Ok(EntryErrorKind::PermissionDenied),
err => Err(err),
}