Mercurial > dropbear
changeset 140:1bb50993acf1
atomicio.c: one less compile warning
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sun, 19 Dec 2004 07:43:37 +0000 |
parents | a3b58707122b |
children | 12a6f385747d |
files | atomicio.c |
diffstat | 1 files changed, 3 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/atomicio.c Fri Dec 17 06:26:55 2004 +0000 +++ b/atomicio.c Sun Dec 19 07:43:37 2004 +0000 @@ -1,5 +1,5 @@ /* - * Copied from OpenSSH 3.6.1p2, required for loginrec.c + * Copied from OpenSSH 3.6.1p2. * * Copyright (c) 1995,1999 Theo de Raadt. All rights reserved. * All rights reserved. @@ -25,8 +25,6 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* Taken from OpenSSH for use with the loginrec code */ - /* RCSID("OpenBSD: atomicio.c,v 1.10 2001/05/08 22:48:07 markus Exp "); */ #include "atomicio.h" @@ -42,7 +40,8 @@ size_t n; { char *s = _s; - ssize_t res, pos = 0; + ssize_t res; + size_t pos = 0; while (n > pos) { res = (f) (fd, s + pos, n - pos);