Re: HTLocal bug?

Hi Sam, 

I have met the same problem. 
Using HTLocal for multiple files falls into an infinite loop...
I recently posted a following quick-hacked-patch.
Doesn't it fix your problem?

diff -bw HTFile.c.orig HTFile.c
439c439
< 		if (HTHost_addNet(host, net) == HT_PENDING)
---
> 		if (HTHost_addNet(host, net) == HT_PENDING) {
440a441,442
>                     return HT_OK;
>                 }

---
kinuko

Received on Friday, 11 February 2000 10:10:59 UTC