diff --git a/cmd/syncthing/usage.go b/cmd/syncthing/usage.go index cc4a8431b..3f0b9562b 100644 --- a/cmd/syncthing/usage.go +++ b/cmd/syncthing/usage.go @@ -32,7 +32,7 @@ func usageFor(fs *flag.FlagSet, usage string, extra string) func() { var opt = " -" + f.Name if f.DefValue != "false" { - opt += "=" + f.DefValue + opt += "=" + fmt.Sprintf("%q", f.DefValue) } options = append(options, []string{opt, f.Usage})