From 5f05637b0ef7058d3ab2ff385251f73dcc9cb5f7 Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Sun, 16 Apr 2000 12:31:48 +1000 Subject: - Reduce diff against OpenBSD source - All OpenSSL includes are now unconditionally referenced as openssl/foo.h - Pick up formatting changes - Other minor changed (typecasts, etc) that I missed --- atomicio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'atomicio.c') diff --git a/atomicio.c b/atomicio.c index 1299e5bf..3f12344e 100644 --- a/atomicio.c +++ b/atomicio.c @@ -24,7 +24,7 @@ */ #include "includes.h" -RCSID("$Id: atomicio.c,v 1.10 2000/03/17 12:40:15 damien Exp $"); +RCSID("$Id: atomicio.c,v 1.11 2000/04/16 02:31:49 damien Exp $"); #include "xmalloc.h" #include "ssh.h" @@ -43,7 +43,7 @@ atomicio(f, fd, _s, n) ssize_t res, pos = 0; while (n > pos) { - res = (f) (fd, (char*)s + pos, n - pos); + res = (f) (fd, s + pos, n - pos); switch (res) { case -1: if (errno == EINTR || errno == EAGAIN) -- cgit v1.2.1