dissect-image: use right comparison function

fstype can be NULL here.
This commit is contained in:
David Tardon 2018-10-09 13:50:55 +02:00
parent de699c7a06
commit 4db1879acd
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ int dissect_image(
.node = TAKE_PTR(n),
};
m->encrypted = streq(fstype, "crypto_LUKS");
m->encrypted = streq_ptr(fstype, "crypto_LUKS");
*ret = TAKE_PTR(m);