summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2019-01-21 20:19:57 +0100
committerThe Plumber <50238977+systemd-rhel-bot@users.noreply.github.com>2019-12-18 13:25:41 +0100
commit3bbacfb22a9266769a41dee6f8f594fbeb6287fc (patch)
tree8c76225f691e73345a9d7139bb6daf9083fe5882
parentea0c4c31f6dff7d01e585bd8d5f962b373844544 (diff)
downloadsystemd-3bbacfb22a9266769a41dee6f8f594fbeb6287fc.tar.gz
cryptsetup: downgrade a log message we ignore
(cherry picked from commit 44ce4255147ab308c1f13580147c693204c322e8) Related: #1776408
-rw-r--r--src/cryptsetup/cryptsetup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptsetup/cryptsetup.c b/src/cryptsetup/cryptsetup.c
index f2b2557497..53fe04a73f 100644
--- a/src/cryptsetup/cryptsetup.c
+++ b/src/cryptsetup/cryptsetup.c
@@ -621,7 +621,7 @@ int main(int argc, char *argv[]) {
!streq(argv[4], "none")) {
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
key_file = argv[4];
}