From 048dd629c4590eefb2ebd6a316c7350ed3a6ff19 Mon Sep 17 00:00:00 2001 From: ettavolt Date: Mon, 4 Sep 2017 16:36:52 +0300 Subject: [PATCH] 6647 - use path_startswith("/dev") in cryptsetup (#6732) For both key and partition paths. --- src/cryptsetup/cryptsetup-generator.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cryptsetup/cryptsetup-generator.c b/src/cryptsetup/cryptsetup-generator.c index 9ecb6e3..613b018 100644 --- a/src/cryptsetup/cryptsetup-generator.c +++ b/src/cryptsetup/cryptsetup-generator.c @@ -129,7 +129,7 @@ static int create_disk( if (!path_equal(uu, "/dev/null")) { - if (is_device_path(uu)) { + if (path_startswith(uu, "/dev/")) { _cleanup_free_ char *dd = NULL; r = unit_name_from_path(uu, ".device", &dd); @@ -143,7 +143,7 @@ static int create_disk( } } - if (is_device_path(u)) { + if (path_startswith(u, "/dev/")) { fprintf(f, "BindsTo=%s\n" "After=%s\n" -- 2.7.4