summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--atomicio.h5
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 54fa577b3..74dfec38f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -30,6 +30,11 @@
30 avoid confusing wording in HashKnownHosts: 30 avoid confusing wording in HashKnownHosts:
31 originally spotted by alan amesbury; 31 originally spotted by alan amesbury;
32 ok deraadt 32 ok deraadt
33 - jmc@cvs.openbsd.org 2006/07/27 08:00:50
34 [ssh_config.5]
35 avoid confusing wording in HashKnownHosts:
36 originally spotted by alan amesbury;
37 ok deraadt
33 38
3420060804 3920060804
35 - (dtucker) [configure.ac] The "crippled AES" test does not work on recent 40 - (dtucker) [configure.ac] The "crippled AES" test does not work on recent
@@ -5100,4 +5105,4 @@
5100 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 5105 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
5101 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 5106 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
5102 5107
5103$Id: ChangeLog,v 1.4447 2006/08/05 01:34:51 djm Exp $ 5108$Id: ChangeLog,v 1.4448 2006/08/05 01:35:23 djm Exp $
diff --git a/atomicio.h b/atomicio.h
index 03bf065e2..05b97ab8b 100644
--- a/atomicio.h
+++ b/atomicio.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: atomicio.h,v 1.8 2006/04/16 00:52:55 djm Exp $ */ 1/* $OpenBSD: atomicio.h,v 1.9 2006/07/30 20:15:19 stevesk Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2006 Damien Miller. All rights reserved. 4 * Copyright (c) 2006 Damien Miller. All rights reserved.
@@ -30,9 +30,10 @@
30#define _ATOMICIO_H 30#define _ATOMICIO_H
31 31
32#include <sys/types.h> 32#include <sys/types.h>
33#include <unistd.h>
34#include <sys/uio.h> 33#include <sys/uio.h>
35 34
35#include <unistd.h>
36
36/* 37/*
37 * Ensure all of data on socket comes through. f==read || f==vwrite 38 * Ensure all of data on socket comes through. f==read || f==vwrite
38 */ 39 */