Oops. Using the wrong variable was a rather stupid
authorEric Andersen <andersen@codepoet.org>
Mon, 15 Mar 2004 08:46:37 +0000 (08:46 -0000)
committerEric Andersen <andersen@codepoet.org>
Mon, 15 Mar 2004 08:46:37 +0000 (08:46 -0000)
thing for me to do.

networking/ftpgetput.c

index 814253b..a13aaa2 100644 (file)
@@ -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;
        }