cmd/syncthing: Fix incorrect shadowing preventing first startup (fixes #4471)

This commit is contained in:
Jakob Borg 2017-10-28 21:14:37 +02:00
parent 2953fe40d1
commit 5f8c0ca932
1 changed files with 1 additions and 1 deletions

View File

@ -978,7 +978,7 @@ func loadConfigAtStartup() *config.Wrapper {
cfgFile := locations[locConfigFile]
cfg, err := config.Load(cfgFile, myID)
if os.IsNotExist(err) {
cfg := defaultConfig(cfgFile)
cfg = defaultConfig(cfgFile)
cfg.Save()
l.Infof("Default config saved. Edit %s to taste or use the GUI\n", cfg.ConfigPath())
} else if err == io.EOF {