[PATCH] the leading space in volmode check will never match the leading tab output from zfs get

richardburakowski at gmail.com richardburakowski at gmail.com
Thu Sep 24 00:48:10 UTC 2020


Signed-off-by: Richard Burakowski <richard.burakowski at gmail.com>
---
 src/storage/storage_backend_zfs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/storage/storage_backend_zfs.c b/src/storage/storage_backend_zfs.c
index dc692f47ed..439f5b2fd5 100644
--- a/src/storage/storage_backend_zfs.c
+++ b/src/storage/storage_backend_zfs.c
@@ -71,7 +71,7 @@ virStorageBackendZFSVolModeNeeded(void)
         return ret;
     }
 
-    if (strstr(error, " volmode "))
+    if (strstr(error, "volmode "))
         return 1;
     else
         return 0;
-- 
2.26.2




More information about the libvir-list mailing list