From: Eric Bollengier Date: Tue, 21 Dec 2021 12:12:24 +0000 (+0100) Subject: Tweak test-verify-fd.c X-Git-Tag: Beta-15.0.0~707 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=39be74816dc14ec641ac970c953d72febb8171bd;p=thirdparty%2Fbacula.git Tweak test-verify-fd.c --- diff --git a/bacula/src/plugins/fd/test-verify-fd.c b/bacula/src/plugins/fd/test-verify-fd.c index 8ef2fdd40..9619de52f 100644 --- a/bacula/src/plugins/fd/test-verify-fd.c +++ b/bacula/src/plugins/fd/test-verify-fd.c @@ -333,7 +333,6 @@ static bRC pluginIO(bpContext *ctx, struct io_pkt *io) /* Cleanup things during close */ case IO_CLOSE: - io->status = 0; if (close_bpipe(self->pfd) == 0) { Jmsg(ctx, M_INFO, _("File %s matching pattern\n"), self->fname); } @@ -341,7 +340,6 @@ static bRC pluginIO(bpContext *ctx, struct io_pkt *io) case IO_SEEK: /* Seek not needed for this plugin, we don't use real sparse file */ - io->status = 0; break; } return bRC_OK;