diff options
| author | Jakob Unterwurzacher | 2021-08-19 08:31:53 +0200 | 
|---|---|---|
| committer | Jakob Unterwurzacher | 2021-08-19 08:34:49 +0200 | 
| commit | be2bd4eec7de3836da56a3532ecbcf45a127ece2 (patch) | |
| tree | ba918035cb074ea1e4ee6fd0ec712f5ea28c5097 | |
| parent | d8b8232c3c4fa309e11567f6fb42c9642dd9d24c (diff) | |
golangci-lint: fix issues found by "unused" and "deadcode"
Except xattrSupported, this is a false positive.
$ golangci-lint run --disable-all --enable unused --enable deadcode
gocryptfs-xray/xray_main.go:24:5: `GitVersionFuse` is unused (deadcode)
var GitVersionFuse = "[GitVersionFuse not set - please compile using ./build.bash]"
    ^
tests/symlink_race/main.go:47:6: `chmodLoop` is unused (deadcode)
func chmodLoop() {
     ^
internal/readpassword/extpass_test.go:11:5: `testPw` is unused (deadcode)
var testPw = []byte("test")
    ^
tests/reverse/xattr_test.go:13:6: func `xattrSupported` is unused (unused)
func xattrSupported(path string) bool {
     ^
internal/fusefrontend_reverse/rpath.go:20:22: func `(*RootNode).abs` is unused (unused)
func (rfs *RootNode) abs(relPath string, err error) (string, error) {
                     ^
tests/matrix/matrix_test.go:310:6: `sContains` is unused (deadcode)
func sContains(haystack []string, needle string) bool {
| -rw-r--r-- | gocryptfs-xray/xray_main.go | 3 | ||||
| -rw-r--r-- | internal/fusefrontend_reverse/rpath.go | 12 | ||||
| -rw-r--r-- | internal/readpassword/extpass_test.go | 2 | ||||
| -rw-r--r-- | tests/matrix/matrix_test.go | 10 | ||||
| -rw-r--r-- | tests/symlink_race/main.go | 14 | 
5 files changed, 0 insertions, 41 deletions
| diff --git a/gocryptfs-xray/xray_main.go b/gocryptfs-xray/xray_main.go index e68e463..20c31ab 100644 --- a/gocryptfs-xray/xray_main.go +++ b/gocryptfs-xray/xray_main.go @@ -20,9 +20,6 @@ import (  // GitVersion is the gocryptfs version according to git, set by build.bash  var GitVersion = "[GitVersion not set - please compile using ./build.bash]" -// GitVersionFuse is the go-fuse library version, set by build.bash -var GitVersionFuse = "[GitVersionFuse not set - please compile using ./build.bash]" -  // BuildDate is a date string like "2017-09-06", set by build.bash  var BuildDate = "0000-00-00" diff --git a/internal/fusefrontend_reverse/rpath.go b/internal/fusefrontend_reverse/rpath.go index f29bbf5..199473b 100644 --- a/internal/fusefrontend_reverse/rpath.go +++ b/internal/fusefrontend_reverse/rpath.go @@ -12,18 +12,6 @@ import (  	"github.com/rfjakob/gocryptfs/internal/tlog"  ) -// abs basically returns storage dir + "/" + relPath. -// It takes an error parameter so it can directly wrap decryptPath like this: -// a, err := rfs.abs(rfs.decryptPath(relPath)) -// abs never generates an error on its own. In other words, abs(p, nil) never -// fails. -func (rfs *RootNode) abs(relPath string, err error) (string, error) { -	if err != nil { -		return "", err -	} -	return filepath.Join(rfs.args.Cipherdir, relPath), nil -} -  // rDecryptName decrypts the ciphertext name "cName", given the dirIV of the  // directory "cName" lies in. The relative plaintext path to the directory  // "pDir" is used if a "gocryptfs.longname.XYZ.name" must be resolved. diff --git a/internal/readpassword/extpass_test.go b/internal/readpassword/extpass_test.go index 9a643a5..ea05893 100644 --- a/internal/readpassword/extpass_test.go +++ b/internal/readpassword/extpass_test.go @@ -8,8 +8,6 @@ import (  	"github.com/rfjakob/gocryptfs/internal/tlog"  ) -var testPw = []byte("test") -  func TestMain(m *testing.M) {  	// Shut up info output  	tlog.Info.Enabled = false diff --git a/tests/matrix/matrix_test.go b/tests/matrix/matrix_test.go index 5906b3c..5cc5251 100644 --- a/tests/matrix/matrix_test.go +++ b/tests/matrix/matrix_test.go @@ -306,16 +306,6 @@ func TestFileHoles(t *testing.T) {  	}  } -// sContains - does the slice of strings "haystack" contain "needle"? -func sContains(haystack []string, needle string) bool { -	for _, element := range haystack { -		if element == needle { -			return true -		} -	} -	return false -} -  func TestRmwRace(t *testing.T) {  	runtime.GOMAXPROCS(10) diff --git a/tests/symlink_race/main.go b/tests/symlink_race/main.go index 6fb794f..8474a83 100644 --- a/tests/symlink_race/main.go +++ b/tests/symlink_race/main.go @@ -4,7 +4,6 @@ import (  	"fmt"  	"os"  	"syscall" -	"time"  )  const ( @@ -44,19 +43,6 @@ func renameLoop() {  	}  } -func chmodLoop() { -	var err error -	for { -		err = syscall.Chmod(testFile, 0777) -		if err != nil { -			fmt.Printf("Chmod() failed: %v\n", err) -		} else { -			fmt.Printf("Chmod() ok\n") -		} -		time.Sleep(100 * time.Microsecond) -	} -} -  func openLoop() {  	var err error  	var f *os.File | 
