diff options
author | Jakob Unterwurzacher | 2015-10-07 22:58:22 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2015-10-07 22:59:36 +0200 |
commit | ed1df49af5bb616e5ec34585b20c9c93a96b8088 (patch) | |
tree | 953d6701036188c1ca68cecb11789106316f99a1 /gocryptfs_main/sendsig.go | |
parent | c4a66bc30dbec1c3e0240f5d5bdb05412b2168a2 (diff) |
Run go fmt
Diffstat (limited to 'gocryptfs_main/sendsig.go')
-rw-r--r-- | gocryptfs_main/sendsig.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gocryptfs_main/sendsig.go b/gocryptfs_main/sendsig.go index 98bd448..d0e1cbb 100644 --- a/gocryptfs_main/sendsig.go +++ b/gocryptfs_main/sendsig.go @@ -1,16 +1,16 @@ package main import ( - "syscall" "bytes" "fmt" - "os" "io/ioutil" + "os" + "syscall" ) // cmdline looks like this: /bin/bash \0 /path/to/gocryptfs \0 --zerokey \0 ... const ( - WRAPPER_PREFIX = "/bin/bash\000" + WRAPPER_PREFIX = "/bin/bash\000" WRAPPER_CONTAINS = "gocryptfs\000" ) |