aboutsummaryrefslogtreecommitdiff
path: root/lib/url.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-01-20 12:00:46 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-01-20 12:00:46 +0000
commitb5276a9a69bd29502b5a8d6711f4c2d94f4c445e (patch)
treeae18ea4c37a6c1260f5afe3beba4f7f5972b6679 /lib/url.c
parent30377baa5eab8fb1a471b2859244a007bc2e803a (diff)
given passwords in netrc must be respected accordingly
Diffstat (limited to 'lib/url.c')
-rw-r--r--lib/url.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/lib/url.c b/lib/url.c
index f1f35cd6b..c743ed818 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -2491,9 +2491,6 @@ 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)) {
@@ -2510,6 +2507,9 @@ static CURLcode CreateConnection(struct SessionHandle *data,
strcpy(data->state.passwd, newpasswd);
}
free(newpasswd);
+
+ /* we have set the password */
+ data->state.passwdgiven = TRUE;
}
}
}
@@ -2538,15 +2538,18 @@ static CURLcode CreateConnection(struct SessionHandle *data,
sscanf(data->set.userpwd+1, "%127[^\n]", data->state.passwd);
}
- if (data->set.use_netrc != CURL_NETRC_IGNORED &&
+ if ((data->set.use_netrc != CURL_NETRC_IGNORED) &&
!data->state.passwdgiven) { /* need passwd */
if(Curl_parsenetrc(conn->hostname,
data->state.user,
data->state.passwd)) {
infof(data, "Couldn't find host %s in the .netrc file, using defaults",
conn->hostname);
- } else
+ }
+ else {
conn->bits.user_passwd = 1; /* enable user+password */
+ data->state.passwdgiven = TRUE;
+ }
}
/* if we have a user but no password, ask for one */