mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2024-12-10 22:25:49 +01:00
b643a816cc
Fixes #172
12 lines
114 B
Go
12 lines
114 B
Go
// +build !linux
|
|
|
|
package lumberjack
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func chown(_ string, _ os.FileInfo) error {
|
|
return nil
|
|
}
|