projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c7bda1c
)
Oops. Using the wrong variable was a rather stupid
author
Eric Andersen
<andersen@codepoet.org>
Mon, 15 Mar 2004 08:46:37 +0000
(08:46 -0000)
committer
Eric Andersen
<andersen@codepoet.org>
Mon, 15 Mar 2004 08:46:37 +0000
(08:46 -0000)
thing for me to do.
networking/ftpgetput.c
patch
|
blob
|
history
diff --git
a/networking/ftpgetput.c
b/networking/ftpgetput.c
index 814253b5395f45e83d4bdfb312e4363ea22538dc..a13aaa228fc085d66fbcd4f95e1c05c797fb5864 100644
(file)
--- 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, &
filesiz
e))
+ if (safe_strtoul(buf + 4, &
valu
e))
bb_error_msg_and_die("SIZE error: %s", buf + 4);
filesize = value;
}