Run gofmt
This commit is contained in:
parent
b00fc379c4
commit
242fcd0736
@ -1,8 +1,8 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"io/ioutil"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
)
|
||||
|
||||
@ -26,7 +26,7 @@ func checkDir(dir string) error {
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if ! fi.IsDir() {
|
||||
if !fi.IsDir() {
|
||||
return fmt.Errorf("%s is not a directory")
|
||||
}
|
||||
return nil
|
||||
|
10
daemonize.go
10
daemonize.go
@ -1,11 +1,11 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"syscall"
|
||||
"os/exec"
|
||||
"os"
|
||||
"fmt"
|
||||
"os"
|
||||
"os/exec"
|
||||
"os/signal"
|
||||
"syscall"
|
||||
)
|
||||
|
||||
// The child sends us USR1 if the mount was successful
|
||||
@ -36,8 +36,8 @@ func daemonize() {
|
||||
if err != nil {
|
||||
if exiterr, ok := err.(*exec.ExitError); ok {
|
||||
if waitstat, ok := exiterr.Sys().(syscall.WaitStatus); ok {
|
||||
os.Exit(waitstat.ExitStatus())
|
||||
}
|
||||
os.Exit(waitstat.ExitStatus())
|
||||
}
|
||||
}
|
||||
fmt.Printf("daemonize: wait returned an unknown error: %v\n", err)
|
||||
os.Exit(1)
|
||||
|
18
main.go
18
main.go
@ -24,14 +24,14 @@ const (
|
||||
PROGRAM_NAME = "gocryptfs"
|
||||
|
||||
// Exit codes
|
||||
ERREXIT_USAGE = 1
|
||||
ERREXIT_NEWFS = 2
|
||||
ERREXIT_MOUNT = 3
|
||||
ERREXIT_SERVE = 4
|
||||
ERREXIT_CIPHERDIR = 6
|
||||
ERREXIT_INIT = 7
|
||||
ERREXIT_LOADCONF = 8
|
||||
ERREXIT_PASSWORD = 9
|
||||
ERREXIT_USAGE = 1
|
||||
ERREXIT_NEWFS = 2
|
||||
ERREXIT_MOUNT = 3
|
||||
ERREXIT_SERVE = 4
|
||||
ERREXIT_CIPHERDIR = 6
|
||||
ERREXIT_INIT = 7
|
||||
ERREXIT_LOADCONF = 8
|
||||
ERREXIT_PASSWORD = 9
|
||||
ERREXIT_MOUNTPOINT = 10
|
||||
)
|
||||
|
||||
@ -81,7 +81,7 @@ func main() {
|
||||
var cpuprofile = flag.String("cpuprofile", "", "Write cpu profile to specified file")
|
||||
|
||||
flag.Parse()
|
||||
if ! foreground {
|
||||
if !foreground {
|
||||
daemonize() // does not return
|
||||
}
|
||||
if *cpuprofile != "" {
|
||||
|
Loading…
Reference in New Issue
Block a user