summaryrefslogtreecommitdiffstats
path: root/bufaux.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-10-28 05:25:17 +0200
committerDamien Miller <djm@mindrot.org>1999-10-28 05:25:17 +0200
commit7f6ea0264d01aa40b20df8dc75141631479da054 (patch)
treea30aa324db2b41c64e1216ce73b7b7468e5ff706 /bufaux.c
parentBig PAM cleanup (diff)
downloadopenssh-7f6ea0264d01aa40b20df8dc75141631479da054.tar.xz
openssh-7f6ea0264d01aa40b20df8dc75141631479da054.zip
- Integrated patch from Dan Brosemer <odin@linuxfreak.com>
- Build fixes - Autoconf - Change binary names to open* - Fixed autoconf script to detect PAM on RH6.1 - Added tests for libpwdb, and OpenBSD functions to autoconf (not used yet)
Diffstat (limited to 'bufaux.c')
-rw-r--r--bufaux.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/bufaux.c b/bufaux.c
index 1ae39d67a..9d5776f56 100644
--- a/bufaux.c
+++ b/bufaux.c
@@ -14,11 +14,19 @@ Buffers.
*/
+#include "config.h"
#include "includes.h"
-RCSID("$Id: bufaux.c,v 1.1 1999/10/27 03:42:43 damien Exp $");
+RCSID("$Id: bufaux.c,v 1.2 1999/10/28 03:25:17 damien Exp $");
#include "ssh.h"
+
+#ifdef HAVE_OPENSSL
#include <openssl/bn.h>
+#endif
+#ifdef HAVE_SSL
+#include <ssl/bn.h>
+#endif
+
#include "bufaux.h"
#include "xmalloc.h"
#include "getput.h"