diff options
Diffstat (limited to 'authfd.c')
-rw-r--r-- | authfd.c | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -13,8 +13,9 @@ Functions for connecting the local authentication agent. | |||
13 | 13 | ||
14 | */ | 14 | */ |
15 | 15 | ||
16 | #include "config.h" | ||
16 | #include "includes.h" | 17 | #include "includes.h" |
17 | RCSID("$Id: authfd.c,v 1.1 1999/10/27 03:42:43 damien Exp $"); | 18 | RCSID("$Id: authfd.c,v 1.2 1999/10/28 03:25:17 damien Exp $"); |
18 | 19 | ||
19 | #include "ssh.h" | 20 | #include "ssh.h" |
20 | #include "rsa.h" | 21 | #include "rsa.h" |
@@ -24,7 +25,12 @@ RCSID("$Id: authfd.c,v 1.1 1999/10/27 03:42:43 damien Exp $"); | |||
24 | #include "xmalloc.h" | 25 | #include "xmalloc.h" |
25 | #include "getput.h" | 26 | #include "getput.h" |
26 | 27 | ||
28 | #ifdef HAVE_OPENSSL | ||
27 | #include <openssl/rsa.h> | 29 | #include <openssl/rsa.h> |
30 | #endif | ||
31 | #ifdef HAVE_SSL | ||
32 | #include <ssl/rsa.h> | ||
33 | #endif | ||
28 | 34 | ||
29 | /* Returns the number of the authentication fd, or -1 if there is none. */ | 35 | /* Returns the number of the authentication fd, or -1 if there is none. */ |
30 | 36 | ||