diff options
author | Jakob Unterwurzacher | 2022-12-29 15:00:24 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2022-12-29 15:00:37 +0100 |
commit | 856ccaac10579abda5620dfc86ad6031b1076a43 (patch) | |
tree | 91c3f90cf19123ff0cd6cd86d514afb7d38c4ed6 /internal/ctlsocksrv/sanitize.go | |
parent | 99cdaa0b69e884128e8f673f96bd4d3e32743d80 (diff) |
make format
Run "make format" using
go version go1.19.4 linux/amd64
Diffstat (limited to 'internal/ctlsocksrv/sanitize.go')
-rw-r--r-- | internal/ctlsocksrv/sanitize.go | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/internal/ctlsocksrv/sanitize.go b/internal/ctlsocksrv/sanitize.go index 4333872..2272943 100644 --- a/internal/ctlsocksrv/sanitize.go +++ b/internal/ctlsocksrv/sanitize.go @@ -6,10 +6,11 @@ import ( ) // SanitizePath adapts filepath.Clean for FUSE paths. -// 1) Leading slash(es) are dropped -// 2) It returns "" instead of "." -// 3) If the cleaned path points above CWD (start with ".."), an empty string -// is returned +// 1. Leading slash(es) are dropped +// 2. It returns "" instead of "." +// 3. If the cleaned path points above CWD (start with ".."), an empty string +// is returned +// // See the TestSanitizePath testcases for examples. func SanitizePath(path string) string { // (1) |