From 7206181385ddbf29afe62250c780991c92531f45 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 13 Mar 2006 23:33:46 +0000 Subject: David McCreedy found a missing return code assignment --- lib/ftp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/ftp.c b/lib/ftp.c index 7a0cc9a83..b53f8f309 100644 --- a/lib/ftp.c +++ b/lib/ftp.c @@ -2398,7 +2398,7 @@ static CURLcode ftp_statemach_act(struct connectdata *conn) state(conn, FTP_AUTH); } else { - ftp_state_user(conn); + result = ftp_state_user(conn); if(result) return result; } -- cgit v1.2.3