aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--networking/ftpgetput.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/ftpgetput.c b/networking/ftpgetput.c
index 814253b53..a13aaa228 100644
--- a/networking/ftpgetput.c
+++ b/networking/ftpgetput.c
@@ -148,7 +148,7 @@ static int ftp_recieve(ftp_host_info_t *server, FILE *control_stream,
148 148
149 if (ftpcmd("SIZE ", server_path, control_stream, buf) == 213) { 149 if (ftpcmd("SIZE ", server_path, control_stream, buf) == 213) {
150 unsigned long value=filesize; 150 unsigned long value=filesize;
151 if (safe_strtoul(buf + 4, &filesize)) 151 if (safe_strtoul(buf + 4, &value))
152 bb_error_msg_and_die("SIZE error: %s", buf + 4); 152 bb_error_msg_and_die("SIZE error: %s", buf + 4);
153 filesize = value; 153 filesize = value;
154 } 154 }