mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-28 19:52:44 +00:00
Fixed syntax error in normally-unconfigured code in previous commit.
This commit is contained in:
parent
73dfa4e8d6
commit
bf770561ee
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=32588
@ -30,7 +30,7 @@
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: utils.c,v 1.14 1997/10/03 18:11:14 wosch Exp $
|
||||
* $Id: utils.c,v 1.15 1998/01/16 07:37:05 bde Exp $
|
||||
*/
|
||||
|
||||
#ifndef lint
|
||||
@ -130,7 +130,7 @@ copy_file(entp, dne)
|
||||
rval = 1;
|
||||
} else {
|
||||
for (bufp = p, wresid = fs->st_size; ;
|
||||
bufp += wcount, wresid -= wcount)
|
||||
bufp += wcount, wresid -= wcount) {
|
||||
wcount = write(to_fd, bufp, wresid);
|
||||
if (wcount >= wresid || wcount <= 0)
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user