aboutsummaryrefslogtreecommitdiff
path: root/internal/syscallcompat/quirks_darwin.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2026-02-01 21:25:10 +0100
committerJakob Unterwurzacher2026-02-01 21:25:51 +0100
commitbc94538cf36be37dc915c693fbfd56588c2c19a6 (patch)
tree480d284fb4372a8213c7adf82f7de63cdde50d46 /internal/syscallcompat/quirks_darwin.go
parented5f8487b15f1d9cd83b4b0a4220271b6c5f189e (diff)
syscallcompat: DetectQuirks: unbreak darwinHEADmaster
Error: internal/syscallcompat/quirks_darwin.go:36:3: undefined: logQuirk
Diffstat (limited to 'internal/syscallcompat/quirks_darwin.go')
-rw-r--r--internal/syscallcompat/quirks_darwin.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/syscallcompat/quirks_darwin.go b/internal/syscallcompat/quirks_darwin.go
index 4adeea1..c4d5006 100644
--- a/internal/syscallcompat/quirks_darwin.go
+++ b/internal/syscallcompat/quirks_darwin.go
@@ -33,7 +33,7 @@ func DetectQuirks(cipherdir string) (q uint64) {
// On MacOS ExFAT, all empty files share inode number 1:
// https://github.com/rfjakob/gocryptfs/issues/585
if fstypename == FstypenameExfat {
- logQuirk("ExFAT detected, disabling hard links. See https://github.com/rfjakob/gocryptfs/issues/585 for why.")
+ LogQuirk("ExFAT detected, disabling hard links. See https://github.com/rfjakob/gocryptfs/issues/585 for why.")
q |= QuirkDuplicateIno1
}