Thomas Reinke <[EMAIL PROTECTED]> writes: > Ok, either I've completely misread wget, or it has a problem > mirroring SSL sites. It appears that it is deciding that the > https:// scheme is something that is "not to be followed".
That's a bug. Your patch is close to how it should be fixed, with two pending issues: * SCHEME_HTTPS is undefined when SSL is not used. The identifier shouldn't be used unconditionally. * Should we have a "scheme_http_like" property and test for it instead of using "u->scheme == SCHEME_HTTP || u->scheme == SCHEME_HTTPS"?
