1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

David McCreedy found a missing return code assignment

This commit is contained in:
Daniel Stenberg 2006-03-13 23:33:46 +00:00
parent 3f22901a43
commit 7206181385

View File

@ -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;
}