Bug with user:pass in URL

2002-09-16 Thread Nikolay Kuzmin
There is a bug in wget1.8.2 when username or password contains symbol ''. I think you should change code in file src/url.c from int url_skip_uname (const char *url) { const char *p; /* Look for '' that comes before '/' or '?'. */ p = (const char *)strpbrk (url, /?); if (!p || *p != '')

Re: Bug with user:pass in URL

2002-09-16 Thread Daniel Stenberg
On Tue, 17 Sep 2002, Nikolay Kuzmin wrote: There is a bug in wget1.8.2 when username or password contains symbol ''. I think you should change code in file src/url.c from I disagree. The name and password fields must never contain a letter, as it is a reserved letter in URL strings. If your