|
From: Frank P. <f.p...@we...> - 2003-02-14 18:52:59
|
Dear htdig-Developers, I encountered the following problem with the versions 3.1.6 and 3.2.0.b3. htdig cannot parse HTTP-header lines when there is no blank after the col= on,=20 as in content-type:text/html=20 This problem may be solved by replacing the following lines in=20 htnet/HtHHTP.cc:633ff while (*token && !isspace(*token)) token++; while (*token && isspace(*token)) token++; =20 by while (*token &&=20 !isspace(*token) && *token!=3D':') token++; while (*token && (isspace(*token)||*token=3D=3D':')) token++; It worked for me, but I had not time to dive deep into htdig source (had = to=20 get it running for a customer) so please check if this is sufficient. Regards Frank |