HTTrack Website Copier
Free software offline browser - FORUM
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;
    }
  }
}
 
Reply Create subthread


All articles

Subject Author Date
trouble with password sites, 3.20RC1, Win32

06/21/2002 23:43
Re: trouble with password sites, 3.20RC1, Win32

06/22/2002 00:09
Re: trouble with password sites, 3.20RC1, Win32

06/22/2002 00:26
Re: trouble with password sites, 3.20RC1, Win32

06/22/2002 00:49
Re: trouble with password sites, 3.20RC1, Win32

06/22/2002 00:49




0

Created with FORUM 2.0.11