]> source.dussan.org Git - gitblit.git/commitdiff
fix comment 1172/head
authorMartin Spielmann <martin.spielmann@pingunaut.com>
Sat, 7 Jan 2017 12:58:07 +0000 (13:58 +0100)
committerMartin Spielmann <martin.spielmann@pingunaut.com>
Sat, 7 Jan 2017 12:58:07 +0000 (13:58 +0100)
src/main/java/com/gitblit/manager/AuthenticationManager.java

index 46be2ef235cd272f09f6ac2e7f6b3719e5da99b4..2b54e4b8de6a15bfbd1ab229de5768bbb32fa8de 100644 (file)
@@ -570,7 +570,7 @@ public class AuthenticationManager implements IAuthenticationManager {
                        // check if strong hash algorithm is configured
                        String algorithm = settings.getString(Keys.realm.passwordStorage, SecurePasswordHashUtils.PBKDF2WITHHMACSHA256);
                        if(algorithm.equals(SecurePasswordHashUtils.PBKDF2WITHHMACSHA256)){
-                               // rehash the provided correct password and 
+                               // rehash the provided correct password and update the user model
                                user.password = SecurePasswordHashUtils.get().createStoredPasswordFromPassword(password);
                                userManager.updateUserModel(user);
                        }