monit-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: preparing for release?


From: rory
Subject: Re: preparing for release?
Date: Sun, 1 Dec 2002 11:56:21 -0800 (PST)

> address@hidden wrote:

I think I have one other error like this, so I'll fix that up, too.

Thx
>
>>I'll be looking at fixing the stuff up early next week.
>>
>>
>>
> There's one sort of problem in dependency code in present cvs version
> (mainly in control.c) - for example in function
> control_dependant_process():
>
>  for(d= p->dependantlist; d; d= p->dependantlist->next) {
>    if(d->dependant == NULL) {
>      break;
>    }
>    control_process(get_process(d->dependant), action);
>    if (d->next == NULL) {
>      break;
>    }
>  }
>
> It will not work properly, correct form should be:
>
>  for(d= p->dependantlist; d; d= d->next) {
>    if(d->dependant == NULL) {
>      break;
>    }
>    control_process(get_process(d->dependant), action);
>  }
>
> I will not break your development version - can you fix it?
>
> Thanks,
> Martin
>
>
>
> _______________________________________________
> monit-dev mailing list
> address@hidden
> http://mail.nongnu.org/mailman/listinfo/monit-dev







reply via email to

[Prev in Thread] Current Thread [Next in Thread]