Oops.  Using the wrong variable was a rather stupid
thing for me to do.
diff --git a/networking/ftpgetput.c b/networking/ftpgetput.c
index 814253b..a13aaa2 100644
--- a/networking/ftpgetput.c
+++ b/networking/ftpgetput.c
@@ -148,7 +148,7 @@
 
 	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;
 	}