Browse Source

[CritFix] Fix catena passwords validation

tags/1.3.1
Vsevolod Stakhov 7 years ago
parent
commit
50ef807416
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/controller.c

+ 1
- 1
src/controller.c View File

@@ -205,7 +205,7 @@ rspamd_is_encrypted_password (const gchar *password,
if (p->id == id) {
ret = TRUE;
if (pbkdf != NULL) {
*pbkdf = &pbkdf_list[0];
*pbkdf = &pbkdf_list[i];
}

break;

Loading…
Cancel
Save