style fixes
This commit is contained in:
parent
029c469934
commit
6231e870ec
@ -28,8 +28,7 @@ static ssize_t bb_full_fd_action(int src_fd, int dst_fd, size_t size)
|
|||||||
RESERVE_CONFIG_BUFFER(buffer,BUFSIZ);
|
RESERVE_CONFIG_BUFFER(buffer,BUFSIZ);
|
||||||
|
|
||||||
if (src_fd < 0) goto out;
|
if (src_fd < 0) goto out;
|
||||||
while (!size || total < size)
|
while (!size || total < size) {
|
||||||
{
|
|
||||||
ssize_t wr, rd;
|
ssize_t wr, rd;
|
||||||
|
|
||||||
rd = safe_read(src_fd, buffer,
|
rd = safe_read(src_fd, buffer,
|
||||||
@ -64,12 +63,12 @@ out:
|
|||||||
int bb_copyfd_size(int fd1, int fd2, const off_t size)
|
int bb_copyfd_size(int fd1, int fd2, const off_t size)
|
||||||
{
|
{
|
||||||
if (size) {
|
if (size) {
|
||||||
return(bb_full_fd_action(fd1, fd2, size));
|
return bb_full_fd_action(fd1, fd2, size);
|
||||||
}
|
}
|
||||||
return(0);
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int bb_copyfd_eof(int fd1, int fd2)
|
int bb_copyfd_eof(int fd1, int fd2)
|
||||||
{
|
{
|
||||||
return(bb_full_fd_action(fd1, fd2, 0));
|
return bb_full_fd_action(fd1, fd2, 0);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user