Re: wget-patches status?

2007-07-06 Thread Hrvoje Niksic
Micah Cowan [EMAIL PROTECTED] writes: What is the status of the wget-patches list: is it being actively used/monitored? Does it still serve its original purpose? Mauro and I are subscribed to it. The list served its purpose while Wget was actively maintained. It's up to you whether to

Re: wget-patches status?

2007-07-06 Thread Micah Cowan
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Hrvoje Niksic wrote: Micah Cowan [EMAIL PROTECTED] writes: What is the status of the wget-patches list: is it being actively used/monitored? Does it still serve its original purpose? Mauro and I are subscribed to it. The list served its

Re: wget-patches status?

2007-07-06 Thread Hrvoje Niksic
Micah Cowan [EMAIL PROTECTED] writes: Mauro and I are subscribed to it. The list served its purpose while Wget was actively maintained. It's up to you whether to preserve it or replace it with a bug tracker patch submission process. Given the low incidence of patch submission, is there any

RE: WGET Dev branch BROKEN

2007-07-06 Thread Christopher G. Lewis
Micah - If I revert HTTP.C to version 2206, the tree builds fine, and http://curl.haxx.se/ca/cacert.pem works. Newest version is 2211, and the request fails. Christopher G. Lewis http://www.ChristopherLewis.com -Original Message- From: Micah Cowan [mailto:[EMAIL PROTECTED]

Re: bug and patch: blank spaces in filenames causes looping

2007-07-06 Thread Steven M. Schweda
From various: [...] char filecopy[2048]; if (file[0] != '') { sprintf(filecopy, \%.2047s\, file); } else { strncpy(filecopy, file, 2047); } [...] It should be: sprintf(filecopy, \%.2045s\, file); [...] I'll admit to being old and grumpy, but am I the

Re: bug and patch: blank spaces in filenames causes looping

2007-07-06 Thread Micah Cowan
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Steven M. Schweda wrote: From various: [...] char filecopy[2048]; if (file[0] != '') { sprintf(filecopy, \%.2047s\, file); } else { strncpy(filecopy, file, 2047); } [...] It should be: sprintf(filecopy,