On Wed, Feb 28, 2001 at 02:05:04PM +0100, Gerhard den Hollander wrote:
> * Alexandre Oliva <[EMAIL PROTECTED]> (Wed, Feb 28, 2001 at 09:22:10AM -0300)
> > On Feb 28, 2001, Gerhard den Hollander <[EMAIL PROTECTED]> wrote:
> > 
> > > GNUTAR sda6 0 1970:1:1:0:0:0 -1 exclude-list=/usr/local/lib/amanda/exclude.gtar
> > > GNUTAR sda6 0 1970:1:1:0:0:0 -1 exclude-list=/usr/local/lib/amanda/exclude.gtar
> > 
> > > Which I take to ask (twice ?) for a level 0 dump
> > 
> > Yep.  Which is totally unexpected to me.  It points to some problem in
> > planner, on the server.  Are you using any unusual dumptype options
> > for this disk?

Hello,

We have a bug if last_level is 0 and the FORCE_NO_BUMP is set.

Try this patch.

Jean-Louis
-- 
Jean-Louis Martineau             email: [EMAIL PROTECTED] 
Departement IRO, Universite de Montreal
C.P. 6128, Succ. CENTRE-VILLE    Tel: (514) 343-6111 ext. 3529
Montreal, Canada, H3C 3J7        Fax: (514) 343-5834
--- server-src/planner.c.orig   Wed Feb 28 08:57:54 2001
+++ server-src/planner.c        Wed Feb 28 08:58:34 2001
@@ -749,7 +749,7 @@
            curr_level = ep->last_level;
 
            if(info.command & FORCE_NO_BUMP) {
-               if(curr_level >= 0) { /* level 0 already asked for */
+               if(curr_level > 0) { /* level 0 already asked for */
                    askfor(ep, i++, curr_level, &info);
                }
                log_add(L_INFO,"Preventing bump of %s:%s as directed.",

Reply via email to