diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-03-13 23:33:46 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-03-13 23:33:46 +0000 |
commit | 7206181385ddbf29afe62250c780991c92531f45 (patch) | |
tree | 33595d6a654f80f3c66bd57cbd5ce8feda4fe871 /lib | |
parent | 3f22901a43448af4ab2c1c690c1c6f391bca2abc (diff) | |
download | curl-7206181385ddbf29afe62250c780991c92531f45.tar.gz |
David McCreedy found a missing return code assignment
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |