diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-01-10 16:19:32 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-01-10 16:19:32 +0000 |
commit | 3773d76dfdb7875148f0cab82fb205bbfe4b6992 (patch) | |
tree | b27d3cb7e2a1cbaff68ceb5cd1bb78b18241e9e3 /lib | |
parent | 94c5c7bd6d33da36ff8c3959e0623eab142273e6 (diff) |
Steve Oliphant pointed out that test case 105 did not work anymore and this
was due to a missing fix for the password prompting
Diffstat (limited to 'lib')
-rw-r--r-- | lib/url.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -2491,6 +2491,9 @@ static CURLcode CreateConnection(struct SessionHandle *data, /* no name given, get the password only */ sscanf(userpass, ":%127[^@]", data->state.passwd); + /* we have set the password */ + data->state.passwdgiven = TRUE; + if(data->state.user[0]) { char *newname=curl_unescape(data->state.user, 0); if(strlen(newname) < sizeof(data->state.user)) { |