From: Marco van Wieringen Date: Sat, 25 Sep 2010 19:31:10 +0000 (+0200) Subject: Tweak retry count handling X-Git-Tag: Release-7.0.0~1508 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=83ec69a2a09f1e7f2503b1acaae18cd59ef4d0ba;p=bacula%2Fbacula Tweak retry count handling --- diff --git a/bacula/src/filed/acl.c b/bacula/src/filed/acl.c index d3a4d2dcda..17b79d3ece 100644 --- a/bacula/src/filed/acl.c +++ b/bacula/src/filed/acl.c @@ -324,7 +324,10 @@ static bacl_exit_code aix_parse_acl_streams(JCR *jcr, int stream) */ switch (errno) { case ENOSPC: - continue; + if (cnt < 3) { + continue; + } + /* FALL THROUGH */ default: Mmsg2(jcr->errmsg, _("aclx_scanStr error on file \"%s\": ERR=%s\n"), jcr->last_fname, be.bstrerror());