reopen 134463 [EMAIL PROTECTED]
tag 134463 sid
thanks
I noticed that this bug, reported against wget package version 1.8.1-1 and
fixed in 1.8.1-2 has reappeared in version 1.8.2-3 (and probably the other
1.8.2 packages too). It seems that the patch I submitted fixing the bug
was not incorperated into the new upstream release, and was not carried
over in the debian packaging of wget.
I hope this will be fixed:
To the upstream developers of wget: please incorperate the patch I submitted
to the debian BTS. To see the full bug report go to
http://bugs.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=134463 .
For your convenience, the patch is also attached to this message.
To the Debian wget maintainer: please reapply the patch yourself until a
fixed version of wget is released.
Thank you all for your contributions to Debian and Free Software.
--
Steven Barker [EMAIL PROTECTED]
We are not a clone.
Get my GnuPG public key at: http://www.blckknght.org/publickey.asc
Fingerprint: 272A 3EC8 52CE F22B F745 775E 5292 F743 EBD5 936B
--- wget-1.8.1/src/netrc.c Fri Nov 30 04:33:22 2001
+++ wget-fixed/src/netrc.c Sun Feb 17 18:12:20 2002
@@ -313,9 +313,12 @@
p ++;
}
- /* if field was quoted, squash the trailing quotation mark */
- if (quote)
+ /* if field was quoted, squash the trailing quotation mark
+ and reset quote flag */
+ if (quote) {
shift_left(p);
+ quote = 0;
+ }
/* Null-terminate the token, if it isn't already. */
if (*p)