Set password type field

This commit is contained in:
Khanh Ngo 2023-03-16 16:25:38 +01:00
parent d3c47c53c8
commit 5e0217db04
No known key found for this signature in database
GPG key ID: 29077342AA5648F6
2 changed files with 3 additions and 3 deletions

View file

@ -514,11 +514,11 @@ func HashesChanged(db store.IStore) bool {
newClient, newServer := GetCurrentHash(db)
if oldClient != newClient {
fmt.Println("Hash for client differs")
//fmt.Println("Hash for client differs")
return true
}
if oldServer != newServer {
fmt.Println("Hash for server differs")
//fmt.Println("Hash for server differs")
return true
}
return false