aboutsummaryrefslogtreecommitdiff
path: root/src/shares.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/shares.rs')
-rw-r--r--src/shares.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shares.rs b/src/shares.rs
index 4017e1f..a6831dc 100644
--- a/src/shares.rs
+++ b/src/shares.rs
@@ -40,7 +40,7 @@ pub struct AccessRule {
pub end: usize,
}
-#[derive(PartialEq, Debug)]
+#[derive(PartialEq, Eq, Debug)]
pub enum AccessMode {
ReadAndWrite,
ReadOnly,
@@ -148,7 +148,7 @@ pub fn parse_shares_txt(text: &str) -> Result<Shares, String> {
// normalize path
let mut comps = Vec::new();
- for comp in Utf8Path::new(&*path).components() {
+ for comp in Utf8Path::new(path).components() {
match comp {
Utf8Component::Normal(name) => comps.push(name),
Utf8Component::ParentDir => {