summaryrefslogtreecommitdiff
path: root/authfile.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-10-28 13:25:17 +1000
committerDamien Miller <djm@mindrot.org>1999-10-28 13:25:17 +1000
commit7f6ea0264d01aa40b20df8dc75141631479da054 (patch)
treea30aa324db2b41c64e1216ce73b7b7468e5ff706 /authfile.c
parent3d112efc672b877c74893229d3fd30f99489b9ff (diff)
- 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 'authfile.c')
-rw-r--r--authfile.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/authfile.c b/authfile.c
index 49390e083..edd1cd9a2 100644
--- a/authfile.c
+++ b/authfile.c
@@ -14,10 +14,17 @@ for reading the passphrase from the user.
14 14
15*/ 15*/
16 16
17#include "config.h"
17#include "includes.h" 18#include "includes.h"
18RCSID("$Id: authfile.c,v 1.1 1999/10/27 03:42:43 damien Exp $"); 19RCSID("$Id: authfile.c,v 1.2 1999/10/28 03:25:17 damien Exp $");
19 20
21#ifdef HAVE_OPENSSL
20#include <openssl/bn.h> 22#include <openssl/bn.h>
23#endif
24#ifdef HAVE_SSL
25#include <ssl/bn.h>
26#endif
27
21#include "xmalloc.h" 28#include "xmalloc.h"
22#include "buffer.h" 29#include "buffer.h"
23#include "bufaux.h" 30#include "bufaux.h"