From f90052c86c879a991abd86fbc63aa4612be34859 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Tue, 26 Apr 2022 08:12:45 -0700 Subject: [PATCH] net/tshttpproxy: fix typo Signed-off-by: Brad Fitzpatrick (cherry picked from commit c6c752cf6400f2fc0561ddc44be0a22787f3e410) --- net/tshttpproxy/tshttpproxy_synology.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/tshttpproxy/tshttpproxy_synology.go b/net/tshttpproxy/tshttpproxy_synology.go index 7ec5cb97d..f16cda8ae 100644 --- a/net/tshttpproxy/tshttpproxy_synology.go +++ b/net/tshttpproxy/tshttpproxy_synology.go @@ -121,7 +121,7 @@ func parseSynologyConfig(r io.Reader) (*url.URL, error) { return proxyURL, nil } -// mtime stat's path and returns it's modification time. If path does not exist, +// mtime stat's path and returns its modification time. If path does not exist, // it returns the unix epoch. func mtime(path string) time.Time { fi, err := os.Stat(path)