aboutsummaryrefslogtreecommitdiff
path: root/lib/ftp.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-08-30 22:59:58 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-08-30 22:59:58 +0000
commit47e7a3e678f34fe0af57b3fdde292f9191f16df5 (patch)
tree814d996f9b3dd8abcf53ea669450f2c3da7f30dd /lib/ftp.c
parent0ece1b5c34c049a3226f7dd793cf75e470c46e4d (diff)
a few more struct fixes
Diffstat (limited to 'lib/ftp.c')
-rw-r--r--lib/ftp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ftp.c b/lib/ftp.c
index dc638dc61..e5bb4e7be 100644
--- a/lib/ftp.c
+++ b/lib/ftp.c
@@ -462,7 +462,7 @@ CURLcode Curl_ftp_connect(struct connectdata *conn)
/* we may need to issue a KAUTH here to have access to the files
* do it if user supplied a password
*/
- if(conn->data->set.passwd && *conn->data->set.passwd)
+ if(data->state.passwd && *data->state.passwd)
Curl_krb_kauth(conn);
#endif
}