From 22820bcd76a781d09ce82f6e734013d55afc1e5c Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Mon, 5 Jun 2017 22:03:15 +0200 Subject: [PATCH] main: reorder force_owner flag parsing No functional changes, just keeping the profiling-related flags together. --- main.go | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/main.go b/main.go index 58d5e06..1599d53 100644 --- a/main.go +++ b/main.go @@ -185,18 +185,6 @@ func main() { } else { args.config = filepath.Join(args.cipherdir, configfile.ConfDefaultName) } - // "-cpuprofile" - if args.cpuprofile != "" { - tlog.Info.Printf("Writing CPU profile to %s", args.cpuprofile) - var f *os.File - f, err = os.Create(args.cpuprofile) - if err != nil { - tlog.Fatal.Println(err) - os.Exit(exitcodes.Init) - } - pprof.StartCPUProfile(f) - defer pprof.StopCPUProfile() - } // "-force_owner" if args.force_owner != "" { var uidNum, gidNum int64 @@ -217,6 +205,18 @@ func main() { } args._forceOwner = &fuse.Owner{Uid: uint32(uidNum), Gid: uint32(gidNum)} } + // "-cpuprofile" + if args.cpuprofile != "" { + tlog.Info.Printf("Writing CPU profile to %s", args.cpuprofile) + var f *os.File + f, err = os.Create(args.cpuprofile) + if err != nil { + tlog.Fatal.Println(err) + os.Exit(exitcodes.Init) + } + pprof.StartCPUProfile(f) + defer pprof.StopCPUProfile() + } // "-memprofile" if args.memprofile != "" { tlog.Info.Printf("Writing mem profile to %s", args.memprofile)