summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--authfile.c3
-rw-r--r--ssh.c3
3 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index e1cccbe44..2710249f2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -40,6 +40,9 @@
40 [ssh.c] 40 [ssh.c]
41 cast asterisk field precision argument to int to remove warning; 41 cast asterisk field precision argument to int to remove warning;
42 ok markus@ 42 ok markus@
43 - stevesk@cvs.openbsd.org 2006/07/11 20:27:56
44 [authfile.c ssh.c]
45 need <errno.h> here also (it's also included in <openssl/err.h>)
43 46
4420060711 4720060711
45 - (dtucker) [configure.ac ssh-keygen.c openbsd-compat/bsd-openpty.c 48 - (dtucker) [configure.ac ssh-keygen.c openbsd-compat/bsd-openpty.c
@@ -4889,4 +4892,4 @@
4889 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 4892 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
4890 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 4893 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
4891 4894
4892$Id: ChangeLog,v 1.4398 2006/07/12 12:23:35 dtucker Exp $ 4895$Id: ChangeLog,v 1.4399 2006/07/12 12:24:22 dtucker Exp $
diff --git a/authfile.c b/authfile.c
index e928b0b0e..cf3d3d9e1 100644
--- a/authfile.c
+++ b/authfile.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: authfile.c,v 1.68 2006/07/09 15:15:10 stevesk Exp $ */ 1/* $OpenBSD: authfile.c,v 1.69 2006/07/11 20:27:56 stevesk Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -45,6 +45,7 @@
45#include <openssl/evp.h> 45#include <openssl/evp.h>
46#include <openssl/pem.h> 46#include <openssl/pem.h>
47 47
48#include <errno.h>
48#include <fcntl.h> 49#include <fcntl.h>
49 50
50#include "cipher.h" 51#include "cipher.h"
diff --git a/ssh.c b/ssh.c
index 100c095dc..9961baf6e 100644
--- a/ssh.c
+++ b/ssh.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh.c,v 1.284 2006/07/11 20:16:43 stevesk Exp $ */ 1/* $OpenBSD: ssh.c,v 1.285 2006/07/11 20:27:56 stevesk Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -52,6 +52,7 @@
52#include <sys/un.h> 52#include <sys/un.h>
53 53
54#include <ctype.h> 54#include <ctype.h>
55#include <errno.h>
55#include <fcntl.h> 56#include <fcntl.h>
56#ifdef HAVE_PATHS_H 57#ifdef HAVE_PATHS_H
57#include <paths.h> 58#include <paths.h>