diff options
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" ) |