summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/error.rs2
-rw-r--r--src/lib.rs3
2 files changed, 0 insertions, 5 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),
}
diff --git a/src/lib.rs b/src/lib.rs
index 38fb5ee..2263695 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,6 +1,3 @@
-#![feature(io_error_more)]
-#![feature(never_type)]
-
mod entry;
mod error;
mod operations;