Subject: Re: trouble with password sites, 3.20RC1, Win32
Author: Xavier Roche
Date: 06/22/2002 00:26
> Error: 'Unable to get server's address' (-5) after 2
> retries at link user:pass@www.blah.com/protected.html
(from
> primary/primary)
Thanks for the report - problem detected (due to a bogus
function in htslib.c, line 2676) and fixed for the next
release!
char* strrchr_limit(char* s, char c, char* limit) {
if (limit == NULL) {
char* p = strchr(s, c);
return p?(p+1):NULL;
} else {
char *a=NULL, *p;
for(;;) {
p=strchr((a)?a:s, c);
if ((p >= limit) || (p == NULL))
return a;
a=p+1;
}
}
}