diff options
author | Jakob Unterwurzacher | 2016-10-09 19:32:55 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-10-09 19:32:55 +0200 |
commit | 25a8802403de157bdfc39b7860ea4e3ee2b1d8ee (patch) | |
tree | 87df610f36f278ebf581e423b4ae80f760a5e2f3 /mount.go | |
parent | 17df345103f53c9076fe1311ae459af1c4e7c82a (diff) |
main: rename "-o" option to "-ko"
This prevents confusion with the "-o" options that is passed
by mount(1) at the end of the command line.
Diffstat (limited to 'mount.go')
-rw-r--r-- | mount.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -185,9 +185,9 @@ func initFuseFrontend(key []byte, args *argContainer, confFile *configfile.ConfF } // Add additional mount options (if any) after the stock ones, so the user has // a chance to override them. - if args.o != "" { - parts := strings.Split(args.o, ",") - tlog.Debug.Printf("Adding -o mount options: %v", parts) + if args.ko != "" { + parts := strings.Split(args.ko, ",") + tlog.Debug.Printf("Adding -ko mount options: %v", parts) mOpts.Options = append(mOpts.Options, parts...) } srv, err := fuse.NewServer(conn.RawFS(), args.mountpoint, &mOpts) |