summaryrefslogtreecommitdiff
path: root/dsa.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-04-04 14:52:38 +1000
committerDamien Miller <djm@mindrot.org>2000-04-04 14:52:38 +1000
commit2acd082bc97f0f6d0a8ca510d3945b4262922ed3 (patch)
treeadcf578e1e5faa0e7e5424aa05524247dbfcf7aa /dsa.c
parent33b13568b520b25990261206e10c941a9270238f (diff)
Include fix
Diffstat (limited to 'dsa.c')
-rw-r--r--dsa.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/dsa.c b/dsa.c
index 99d8ceaf9..eeb4ead10 100644
--- a/dsa.c
+++ b/dsa.c
@@ -28,7 +28,7 @@
28 */ 28 */
29 29
30#include "includes.h" 30#include "includes.h"
31RCSID("$Id: dsa.c,v 1.1 2000/04/03 20:06:14 markus Exp $"); 31RCSID("$Id: dsa.c,v 1.1 2000/04/04 04:39:01 damien Exp $");
32 32
33#include "ssh.h" 33#include "ssh.h"
34#include "xmalloc.h" 34#include "xmalloc.h"
@@ -44,6 +44,7 @@ RCSID("$Id: dsa.c,v 1.1 2000/04/03 20:06:14 markus Exp $");
44# include <openssl/evp.h> 44# include <openssl/evp.h>
45# include <openssl/bio.h> 45# include <openssl/bio.h>
46# include <openssl/pem.h> 46# include <openssl/pem.h>
47# include <openssl/hmac.h>
47#endif /* HAVE_OPENSSL */ 48#endif /* HAVE_OPENSSL */
48#if HAVE_SSL 49#if HAVE_SSL
49# include <ssl/bn.h> 50# include <ssl/bn.h>
@@ -53,9 +54,9 @@ RCSID("$Id: dsa.c,v 1.1 2000/04/03 20:06:14 markus Exp $");
53# include <ssl/evp.h> 54# include <ssl/evp.h>
54# include <ssl/bio.h> 55# include <ssl/bio.h>
55# include <ssl/pem.h> 56# include <ssl/pem.h>
57# include <ssl/hmac.h>
56#endif /* HAVE_SSL */ 58#endif /* HAVE_SSL */
57 59
58#include <ssl/hmac.h>
59#include "kex.h" 60#include "kex.h"
60#include "key.h" 61#include "key.h"
61 62