Allow setting custom device ID prefix

This commit is contained in:
2025-07-06 11:29:41 -04:00
parent 1a66a30bc1
commit fb2120c94e
2 changed files with 7 additions and 5 deletions
+1 -1
View File
@@ -74,7 +74,7 @@ func LibmuttonInit(inputCB func(prompt string) string, clientSpecificIniData [][
return errors.New("unable to write config file: " + err.Error())
}
// generate and register device ID
sshEntryRoot, sshIsWindows, err := synccycles.DeviceIDGen(oldDeviceID)
sshEntryRoot, sshIsWindows, err := synccycles.DeviceIDGen(oldDeviceID, "")
if err != nil {
return errors.New("unable to generate device ID: " + err.Error())
}