aboutsummaryrefslogtreecommitdiff
path: root/lib/krb4.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-07-19 23:56:33 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-07-19 23:56:33 +0000
commit52b631fadecb5ff5f038badfd79055e7d4272927 (patch)
tree27e4b5c01914b8fab19f458b124fffe8455211b2 /lib/krb4.c
parent2f0bc9d1f74236bec433d0681f9893db6f22694e (diff)
Access the user and passwd fields from the connectdata struct now instead
of the sessionhandle struct, as that was not good.
Diffstat (limited to 'lib/krb4.c')
-rw-r--r--lib/krb4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/krb4.c b/lib/krb4.c
index 6c91e2fb9..b80ea390e 100644
--- a/lib/krb4.c
+++ b/lib/krb4.c
@@ -322,7 +322,7 @@ CURLcode Curl_krb_kauth(struct connectdata *conn)
save = Curl_set_command_prot(conn, prot_private);
- result = Curl_ftpsendf(conn, "SITE KAUTH %s", conn->data->state.user);
+ result = Curl_ftpsendf(conn, "SITE KAUTH %s", conn->user);
if(result)
return result;