summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--auth-krb5.c1
-rw-r--r--auth-pam.c2
3 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 478b816fe..1945b8cd4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
120060713
2 - (dtucker) [auth-krb5.c auth-pam.c] Still more errno.h
3
120060712 420060712
2 - (dtucker) [configure.ac defines.h] Only define SHUT_RD (and friends) and 5 - (dtucker) [configure.ac defines.h] Only define SHUT_RD (and friends) and
3 O_NONBLOCK if they're really needed. Fixes build errors on HP-UX, old 6 O_NONBLOCK if they're really needed. Fixes build errors on HP-UX, old
@@ -64,7 +67,6 @@
64 - (dtucker) [openbsd-compat/bsd-asprintf.c openbsd-compat/port-aix.c 67 - (dtucker) [openbsd-compat/bsd-asprintf.c openbsd-compat/port-aix.c
65 openbsd-compat/rresvport.c] More errno.h. 68 openbsd-compat/rresvport.c] More errno.h.
66 69
67
6820060711 7020060711
69 - (dtucker) [configure.ac ssh-keygen.c openbsd-compat/bsd-openpty.c 71 - (dtucker) [configure.ac ssh-keygen.c openbsd-compat/bsd-openpty.c
70 openbsd-compat/daemon.c] Add includes needed by open(2). Conditionally 72 openbsd-compat/daemon.c] Add includes needed by open(2). Conditionally
@@ -4913,4 +4915,4 @@
4913 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 4915 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
4914 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 4916 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
4915 4917
4916$Id: ChangeLog,v 1.4406 2006/07/12 13:41:33 dtucker Exp $ 4918$Id: ChangeLog,v 1.4407 2006/07/12 22:45:14 dtucker Exp $
diff --git a/auth-krb5.c b/auth-krb5.c
index 7bce7778b..8beacc0d4 100644
--- a/auth-krb5.c
+++ b/auth-krb5.c
@@ -40,6 +40,7 @@
40#include "auth.h" 40#include "auth.h"
41 41
42#ifdef KRB5 42#ifdef KRB5
43#include <errno.h>
43#include <krb5.h> 44#include <krb5.h>
44 45
45extern ServerOptions options; 46extern ServerOptions options;
diff --git a/auth-pam.c b/auth-pam.c
index 16e7c21e3..cb8754ec7 100644
--- a/auth-pam.c
+++ b/auth-pam.c
@@ -51,6 +51,8 @@
51#include <sys/types.h> 51#include <sys/types.h>
52#include <sys/stat.h> 52#include <sys/stat.h>
53#include <sys/wait.h> 53#include <sys/wait.h>
54
55#include <errno.h>
54#include <signal.h> 56#include <signal.h>
55 57
56#ifdef USE_PAM 58#ifdef USE_PAM