summaryrefslogtreecommitdiffstats
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 478b816f..1945b8cd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+20060713
+ - (dtucker) [auth-krb5.c auth-pam.c] Still more errno.h
+
20060712
- (dtucker) [configure.ac defines.h] Only define SHUT_RD (and friends) and
O_NONBLOCK if they're really needed. Fixes build errors on HP-UX, old
@@ -64,7 +67,6 @@
- (dtucker) [openbsd-compat/bsd-asprintf.c openbsd-compat/port-aix.c
openbsd-compat/rresvport.c] More errno.h.
-
20060711
- (dtucker) [configure.ac ssh-keygen.c openbsd-compat/bsd-openpty.c
openbsd-compat/daemon.c] Add includes needed by open(2). Conditionally
@@ -4913,4 +4915,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
-$Id: ChangeLog,v 1.4406 2006/07/12 13:41:33 dtucker Exp $
+$Id: ChangeLog,v 1.4407 2006/07/12 22:45:14 dtucker Exp $
diff --git a/auth-krb5.c b/auth-krb5.c
index 7bce7778..8beacc0d 100644
--- a/auth-krb5.c
+++ b/auth-krb5.c
@@ -40,6 +40,7 @@
#include "auth.h"
#ifdef KRB5
+#include <errno.h>
#include <krb5.h>
extern ServerOptions options;
diff --git a/auth-pam.c b/auth-pam.c
index 16e7c21e..cb8754ec 100644
--- a/auth-pam.c
+++ b/auth-pam.c
@@ -51,6 +51,8 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/wait.h>
+
+#include <errno.h>
#include <signal.h>
#ifdef USE_PAM