aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-03-15 08:46:37 +0000
committerEric Andersen <andersen@codepoet.org>2004-03-15 08:46:37 +0000
commitca65ca7d450ae6cbc0702e6b10925ccaef982bb4 (patch)
tree9a7f0a05d2b4ae1298eb98b6268a478f89b68b5a /networking
parentc7bda1ce659294d6e22c06e087f6f265983c7578 (diff)
downloadbusybox-ca65ca7d450ae6cbc0702e6b10925ccaef982bb4.tar.gz
Oops. Using the wrong variable was a rather stupid
thing for me to do.
Diffstat (limited to 'networking')
-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,
if (ftpcmd("SIZE ", server_path, control_stream, buf) == 213) {
unsigned long value=filesize;
- if (safe_strtoul(buf + 4, &filesize))
+ if (safe_strtoul(buf + 4, &value))
bb_error_msg_and_die("SIZE error: %s", buf + 4);
filesize = value;
}