summaryrefslogtreecommitdiffstats
path: root/libimagstorestdhook/src/linkverify.rs
diff options
context:
space:
mode:
Diffstat (limited to 'libimagstorestdhook/src/linkverify.rs')
-rw-r--r--libimagstorestdhook/src/linkverify.rs10
1 files changed, 4 insertions, 6 deletions
diff --git a/libimagstorestdhook/src/linkverify.rs b/libimagstorestdhook/src/linkverify.rs
index e97981b7..85551999 100644
--- a/libimagstorestdhook/src/linkverify.rs
+++ b/libimagstorestdhook/src/linkverify.rs
@@ -53,12 +53,10 @@ impl NonMutableHookDataAccessor for LinkedEntriesExistHook {
let _ = fle.get_internal_links()
.map(|links| {
for link in links {
- let mut path = self.store_location.clone();
- path.push(link);
- if !path.exists() {
- warn!("File link does not exist: {:?} -> {:?}", fle.get_location(), path);
- } else if !path.is_file() {
- warn!("File link is not a file: {:?} -> {:?}", fle.get_location(), path);
+ if !link.exists() {
+ warn!("File link does not exist: {:?} -> {:?}", fle.get_location(), link);
+ } else if !link.is_file() {
+ warn!("File link is not a file: {:?} -> {:?}", fle.get_location(), link);
}
}
})