Displaying 1 result from an estimated 1 matches for "683cf5ed4".
Did you mean:
683cf5e
2020 Mar 10
2
[PATCH common] options: Require libguestfs >= 1.42.
...usly now >= 1.42. In virt-v2v we made a
similar change upstream to require libguestfs >= 1.42. Therefore the
ifdefs are no longer required.
---
options/decrypt.c | 5 -----
options/options.c | 4 ----
2 files changed, 9 deletions(-)
diff --git a/options/decrypt.c b/options/decrypt.c
index 683cf5ed4..32ef29fd6 100644
--- a/options/decrypt.c
+++ b/options/decrypt.c
@@ -85,12 +85,7 @@ inspect_do_decrypt (guestfs_h *g, struct key_store *ks)
if (type && STREQ (type, "crypto_LUKS")) {
char mapname[32];
make_mapname (partitions[i], mapname, sizeof mapname);
-
-#i...