From 52b631fadecb5ff5f038badfd79055e7d4272927 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sat, 19 Jul 2003 23:56:33 +0000 Subject: Access the user and passwd fields from the connectdata struct now instead of the sessionhandle struct, as that was not good. --- lib/telnet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/telnet.c') diff --git a/lib/telnet.c b/lib/telnet.c index e345caaa3..cb6e3ed58 100644 --- a/lib/telnet.c +++ b/lib/telnet.c @@ -756,7 +756,7 @@ static int check_telnet_options(struct connectdata *conn) if(conn->bits.user_passwd) { char *buf = malloc(256); - sprintf(buf, "USER,%s", data->state.user); + sprintf(buf, "USER,%s", conn->user); tn->telnet_vars = curl_slist_append(tn->telnet_vars, buf); tn->us_preferred[CURL_TELOPT_NEW_ENVIRON] = CURL_YES; -- cgit v1.2.3