From b576a47d59adc89757459d785ee98a2635542eb0 Mon Sep 17 00:00:00 2001 From: Der-Jan Date: Fri, 29 May 2020 22:25:13 +0200 Subject: [PATCH] Read list until process exits Signed-off-by: Der-Jan --- src/lxc/storage/zfs.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lxc/storage/zfs.c b/src/lxc/storage/zfs.c index ee9e32d0a..9b8248dd4 100644 --- a/src/lxc/storage/zfs.c +++ b/src/lxc/storage/zfs.c @@ -100,7 +100,6 @@ static bool zfs_list_entry(const char *path, char *output, size_t inlen) while (fgets(output, inlen, f->f)) { if (strstr(output, path)) { found = true; - break; } } (void)lxc_pclose(f); -- 2.47.3