Hello!

Gilles Detillieux wrote:

> According to Joe R. Jah:
> > Retriever.cc-h.diff is the culprit; I backed it off, and everything worked
> > without a problem.
> 
> Aw, nuts!  I wanted that patch.  Maybe we should just try for a simpler

There is one bug that can cause trouble. Look at this bit:

@@ -150,7 +150,7 @@
         {
            if (debug > 2)
                 cout << " pushed";
-       server->push(u.get(), 0, 0);
+           server->push(u.get(), 0, 0, IsLocal(url.get()));
         }
        if (debug > 2)
            cout << endl;

it should be

@@ -150,7 +150,7 @@
         {
            if (debug > 2)
                 cout << " pushed";
-       server->push(u.get(), 0, 0);
+           server->push(u.get(), 0, 0, IsLocal(u.get()));
         }
        if (debug > 2)
            cout << endl;

Not IsLocal(url.get()), but IsLocal(u.get()). I cant check this change
just now, because I have sources for htdig only at home, so I would be
able to report is it right untill tomorrow.

Alexis

------------------------------------
To unsubscribe from the htdig3-dev mailing list, send a message to
[EMAIL PROTECTED] 
You will receive a message to confirm this. 

Reply via email to