1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-01 09:21:26 +03:00

cryptsetup: add comment what EAGAIN means when activating

This commit is contained in:
Lennart Poettering 2019-01-21 20:20:35 +01:00
parent 44ce425514
commit 906962f312

View File

@ -697,7 +697,7 @@ static int run(int argc, char *argv[]) {
flags);
if (r >= 0)
break;
if (r == -EAGAIN) {
if (r == -EAGAIN) { /* Passphrase not correct? Let's try again! */
key_file = NULL;
continue;
}