Skip to content

Commit

Permalink
SyncSettings: fix struct naming
Browse files Browse the repository at this point in the history
  • Loading branch information
jsommerville-untangle committed Feb 10, 2022
1 parent 3ff6462 commit 0ca38a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions services/settings/syncsettings.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type SyncSettings struct {
OS string
TmpSettingsFile string
SyncSettingsExecutable string
UidFile string
UIDFile string
}

// NewSyncSettings creates a new settings object
Expand All @@ -33,7 +33,7 @@ func NewSyncSettings(settingsfile string, defaultsfile string, currentfile strin
s.OS = os
s.TmpSettingsFile = tmpsettingsfile
s.SyncSettingsExecutable = syncsettingsexecutable
s.UidFile = uidfile
s.UIDFile = uidfile

return s

Expand Down

0 comments on commit 0ca38a6

Please sign in to comment.