aboutsummaryrefslogtreecommitdiff
path: root/daemonize.go
diff options
context:
space:
mode:
Diffstat (limited to 'daemonize.go')
-rw-r--r--daemonize.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/daemonize.go b/daemonize.go
index 9869258..de09743 100644
--- a/daemonize.go
+++ b/daemonize.go
@@ -7,6 +7,7 @@ import (
"os/signal"
"syscall"
+ "github.com/rfjakob/gocryptfs/internal/exitcodes"
"github.com/rfjakob/gocryptfs/internal/tlog"
)
@@ -36,7 +37,7 @@ func forkChild() int {
err := c.Start()
if err != nil {
tlog.Fatal.Printf("forkChild: starting %s failed: %v\n", name, err)
- return 1
+ return exitcodes.ForkChild
}
err = c.Wait()
if err != nil {
@@ -46,7 +47,7 @@ func forkChild() int {
}
}
tlog.Fatal.Printf("forkChild: wait returned an unknown error: %v\n", err)
- return 1
+ return exitcodes.ForkChild
}
// The child exited with 0 - let's do the same.
return 0