don't bump internally

This commit is contained in:
Your Name 2020-06-04 16:05:53 -04:00
parent 1a31bb6b30
commit 1b18ede09c
1 changed files with 0 additions and 2 deletions

View File

@ -112,7 +112,6 @@ func Login(username, password string) bool {
return false
}
log.Printf("User %s logged in\n", username)
Bump(username)
return true
}
@ -135,7 +134,6 @@ func ChangePassword(username, oldpass, newpass string) bool {
log.Printf("scsusers.ChangePassword: update failed for %s: %s\n", username, err.Error())
return false
}
Bump(username)
return true
}