From: Der-Jan Date: Fri, 29 May 2020 20:25:13 +0000 (+0200) Subject: Read list until process exits X-Git-Tag: v6.0.0~34^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b576a47d59adc89757459d785ee98a2635542eb0;p=thirdparty%2Flxc.git Read list until process exits Signed-off-by: Der-Jan --- 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);