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:
1b2e7c3
)
use an explicit cast on some types that change size when
author
Eric Andersen
<andersen@codepoet.org>
Fri, 20 Jun 2003 09:22:12 +0000
(09:22 -0000)
committer
Eric Andersen
<andersen@codepoet.org>
Fri, 20 Jun 2003 09:22:12 +0000
(09:22 -0000)
large file support is enabled.
networking/ftpgetput.c
patch
|
blob
|
history
diff --git
a/networking/ftpgetput.c
b/networking/ftpgetput.c
index 39438904313377a395b29e6b6bc433a002436a8b..41f45414abf835d1532299fd65637411379f1a5b 100644
(file)
--- a/
networking/ftpgetput.c
+++ b/
networking/ftpgetput.c
@@
-187,7
+187,7
@@
static int ftp_recieve(FILE *control_stream, const char *host, const char *local
}
if (do_continue) {
- sprintf(buf, "REST %ld", beg_range);
+ sprintf(buf, "REST %ld",
(long)
beg_range);
if (ftpcmd(buf, NULL, control_stream, buf) != 350) {
do_continue = 0;
} else {
@@
-245,7
+245,7
@@
static int ftp_send(FILE *control_stream, const char *host, const char *server_p
fd_local = bb_xopen(local_path, O_RDONLY);
fstat(fd_local, &sbuf);
- sprintf(buf, "ALLO %lu", sbuf.st_size);
+ sprintf(buf, "ALLO %lu",
(unsigned long)
sbuf.st_size);
response = ftpcmd(buf, NULL, control_stream, buf);
switch (response) {
case 200: