Server : Disable warning on empty master key (clear passwords from others)

This commit is contained in:
Gregory Soutade 2014-03-07 17:36:12 +01:00
parent ccaca8c598
commit fceab22f48
1 changed files with 3 additions and 0 deletions

View File

@ -364,6 +364,9 @@ function update_master_key(warning_unciphered)
if (current_mkey != "")
current_mkey = derive_mkey(current_user, current_mkey);
else
// Disable warning on empty master key (clear passwords from others)
warning_unciphered = false;
change_master_key(warning_unciphered);
}