summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-10-21 10:50:25 +1000
committerDamien Miller <djm@mindrot.org>2002-10-21 10:50:25 +1000
commit7b3f58cbcd1e30d02292b5574aaa3e2486288ec2 (patch)
tree7e6f214457f1cc433f014f9094574a89551f6cf9
parent5a5da88c59d30c8a97625def757d20f151bb200c (diff)
- (djm) Bug #317: FreeBSD needs libutil.h for openpty() Report from
dirk.meyer@dinoex.sub.org
-rw-r--r--ChangeLog7
-rw-r--r--includes.h4
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 9a01c2317..51bfea7f6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
120021021 120021021
2 - (djm) Kill ssh-rand-helper children on timeout, patch from 2 - (djm) Bug #317: FreeBSD needs libutil.h for openpty() Report from
3 dtucker@zip.com.au 3 dirk.meyer@dinoex.sub.org
4 - (djm) Bug #317: FreeBSD needs libutil.h for openpty()
4 5
520021015 620021015
6 - (bal) Fix bug id 383 and only call loginrestrict for AIX if not root. 7 - (bal) Fix bug id 383 and only call loginrestrict for AIX if not root.
@@ -772,4 +773,4 @@
772 save auth method before monitor_reset_key_state(); bugzilla bug #284; 773 save auth method before monitor_reset_key_state(); bugzilla bug #284;
773 ok provos@ 774 ok provos@
774 775
775$Id: ChangeLog,v 1.2497 2002/10/21 00:13:35 djm Exp $ 776$Id: ChangeLog,v 1.2498 2002/10/21 00:50:25 djm Exp $
diff --git a/includes.h b/includes.h
index d7b875c52..37d402ef4 100644
--- a/includes.h
+++ b/includes.h
@@ -157,6 +157,10 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
157# include <tmpdir.h> 157# include <tmpdir.h>
158#endif 158#endif
159 159
160#ifdef HAVE_LIBUTIL_H
161# include <libutil.h> /* Openpty on FreeBSD at least */
162#endif
163
160#include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */ 164#include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */
161 165
162#include "defines.h" 166#include "defines.h"