OK, I have applied the following patch which should fix the problem by
preventing tv_sec from becoming negative.
---
Bruce Momjian wrote:
> Denis A Ustimenko wrote:
> > Hello Bruce!
> >
> > You have patched fe-connect.c an
Denis A Ustimenko wrote:
> Hello Bruce!
>
> You have patched fe-connect.c and dropeed out one check in line 1078:
>
> < while (rp == NULL || remains.tv_sec > 0 || (remains.tv_sec == 0 && remains.tv_usec
>> 0))
> ---
> > while (rp == NULL || remains.tv_sec > 0 || remains.tv_usec > 0)
>
> As I u