aboutsummaryrefslogtreecommitdiffhomepage
path: root/listen.go
diff options
context:
space:
mode:
authorFrancis Lavoie <[email protected]>2024-11-13 03:55:51 -0500
committerGitHub <[email protected]>2024-11-13 03:55:51 -0500
commit315715e90ffa25c4ad0d8a96e828dbdf6f638583 (patch)
tree3b22815c57acc730c90b6dcaa740a34a7073a36b /listen.go
parent238f1108e6600049d9041abc88db24526ee4f882 (diff)
downloadcaddy-315715e90ffa25c4ad0d8a96e828dbdf6f638583.tar.gz
caddy-315715e90ffa25c4ad0d8a96e828dbdf6f638583.zip
core: Implement FastAbs to avoid repeated os.Getwd calls (#6687)
* core: Implement FastAbs to avoid repeated os.Getwd calls * Lint * Rename files
Diffstat (limited to 'listen.go')
-rw-r--r--listen.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/listen.go b/listen.go
index f5c2086a6..1a7051bbf 100644
--- a/listen.go
+++ b/listen.go
@@ -30,7 +30,7 @@ import (
"go.uber.org/zap"
)
-func reuseUnixSocket(network, addr string) (any, error) {
+func reuseUnixSocket(_, _ string) (any, error) {
return nil, nil
}