From 83ec69a2a09f1e7f2503b1acaae18cd59ef4d0ba Mon Sep 17 00:00:00 2001 From: Marco van Wieringen Date: Sat, 25 Sep 2010 21:31:10 +0200 Subject: [PATCH] Tweak retry count handling --- bacula/src/filed/acl.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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()); -- 2.39.5