From 34e635bb2b884b6387be028e1e319d60341e300a Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Tue, 23 Feb 2010 10:19:16 +0100 Subject: [PATCH] Ensure SD asks for help when looping even if poll set. Fixes bug #1513 --- bacula/src/stored/mount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bacula/src/stored/mount.c b/bacula/src/stored/mount.c index 6e8fabaab4..d2bd8aedaf 100644 --- a/bacula/src/stored/mount.c +++ b/bacula/src/stored/mount.c @@ -88,7 +88,7 @@ bool DCR::mount_next_write_volume() mount_next_vol: Dmsg1(150, "mount_next_vol retry=%d\n", retry); /* Ignore retry if this is poll request */ - if (!dev->poll && retry++ > 4) { + if (retry++ > 4) { /* Last ditch effort before giving up, force operator to respond */ VolCatInfo.Slot = 0; unlock_volumes(); -- 2.39.5