Re: wget 1.10.x fixed recursive ftp download over proxy

2006-01-11 Thread CHEN Peng
| opt.page_requisites) > && ((url_scheme (*t) != SCHEME_FTP) || opt.use_proxy)) > status = retrieve_tree (*t); > else > status = retrieve_url > (*t, &filename, &redirected_URL, NULL, &dt); > > Tony > -Original Message- > From: [EMAIL PROTEC

Re: wget 1.10.x fixed recursive ftp download over proxy

2006-01-10 Thread CHEN Peng
ve the following simplified code would have the same effect: > > if ((opt.recursive || opt.page_requisites || opt.use_proxy) > && url_scheme (*t) != SCHEME_FTP) > status = retrieve_tree (*t); > else > status = retrieve_url > (*t, &filename, &redirected_URL, NULL, &dt); > > > Tony > -- CHEN Peng <[EMAIL PROTECTED]>

wget 1.10.x fixed recursive ftp download over proxy

2006-01-09 Thread CHEN Peng
eve_tree (*t); else   status = retrieve_url   (*t, &filename, &redirected_URL, NULL, &dt); After patching the main.c, the new wget works perfectly for FTP recursive downloading, both with proxy and without proxy. This patching works for 1.9.x and 1.10.x till the latest version so far (1.10.2).-- CHEN Peng <[EMAIL PROTECTED]>