summaryrefslogtreecommitdiff
path: root/lib/dict.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-03-14 14:11:11 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-03-14 14:11:11 +0000
commitf8e1fc32de60c5f4c30d20d2bc8c55ac13405752 (patch)
treefac5cfe16bec8ae166e7d77fdfb8b0e0845af7f0 /lib/dict.c
parent8c6d56f1f971d4804c6fe4618b2ead6aca7319a9 (diff)
downloadcurl-f8e1fc32de60c5f4c30d20d2bc8c55ac13405752.tar.gz
Edin Kadribaic's bug report #408488 forced a rearrange of two struct fields
from urldata to connectdata, quite correctly.
Diffstat (limited to 'lib/dict.c')
-rw-r--r--lib/dict.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dict.c b/lib/dict.c
index 893ef256e..53c245947 100644
--- a/lib/dict.c
+++ b/lib/dict.c
@@ -100,7 +100,7 @@ CURLcode Curl_dict(struct connectdata *conn)
char *path = conn->path;
long *bytecount = &conn->bytecount;
- if(data->bits.user_passwd) {
+ if(conn->bits.user_passwd) {
/* AUTH is missing */
}