diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-07-21 09:19:48 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-07-21 09:19:48 +0000 |
commit | 56014e74a0fd6ed349370af1c0448a0013fa8bf4 (patch) | |
tree | 3acb55c24b171f712e14cb676d50b66ff38c4829 /lib/krb4.c | |
parent | 172271498dcbfbb8897f285d9c9c54af6d06bb5a (diff) | |
download | curl-56014e74a0fd6ed349370af1c0448a0013fa8bf4.tar.gz |
krb4-fixes for the moved user+password fields within the structs
Diffstat (limited to 'lib/krb4.c')
-rw-r--r-- | lib/krb4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/krb4.c b/lib/krb4.c index b80ea390e..71fdea131 100644 --- a/lib/krb4.c +++ b/lib/krb4.c @@ -363,7 +363,7 @@ CURLcode Curl_krb_kauth(struct connectdata *conn) for(; *p && *p != ' ' && *p != '\r' && *p != '\n'; p++); *p = 0; - des_string_to_key (conn->data->state.passwd, &key); + des_string_to_key (conn->passwd, &key); des_key_sched(&key, schedule); des_pcbc_encrypt((void *)tkt.dat, (void *)tktcopy.dat, |