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

cryptsetup: downgrade a log message we ignore

This commit is contained in:
Lennart Poettering 2019-01-21 20:19:57 +01:00
parent aed68083c0
commit 44ce425514

View File

@ -623,7 +623,7 @@ static int run(int argc, char *argv[]) {
!streq(argv[4], "none")) { !streq(argv[4], "none")) {
if (!path_is_absolute(argv[4])) if (!path_is_absolute(argv[4]))
log_error("Password file path '%s' is not absolute. Ignoring.", argv[4]); log_warning("Password file path '%s' is not absolute. Ignoring.", argv[4]);
else else
key_file = argv[4]; key_file = argv[4];
} }