Enforce more consistent meanings for the various field separator characters

This commit is contained in:
2024-06-04 21:51:58 -04:00
parent 3c5f508835
commit 9693d2608b
4 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ func DeviceIDGen() (string, string) {
// register device ID with server and fetch remote EntryRoot and OS type
//manualSync is true so the user is alerted if device ID registration fails
sshEntryRootSSHIsWindows := strings.Split(GetSSHOutput("libmuttonserver register", deviceID, true), "\x1f")
sshEntryRootSSHIsWindows := strings.Split(GetSSHOutput("libmuttonserver register", deviceID, true), "\x1e")
return sshEntryRootSSHIsWindows[0], sshEntryRootSSHIsWindows[1]
}