diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | authfile.c | 3 |
2 files changed, 6 insertions, 2 deletions
@@ -42,6 +42,9 @@ | |||
42 | - stevesk@cvs.openbsd.org 2001/12/27 18:22:53 | 42 | - stevesk@cvs.openbsd.org 2001/12/27 18:22:53 |
43 | [sshd.8] | 43 | [sshd.8] |
44 | clarify -p; ok markus@ | 44 | clarify -p; ok markus@ |
45 | - markus@cvs.openbsd.org 2001/12/27 18:26:13 | ||
46 | [authfile.c] | ||
47 | missing include | ||
45 | 48 | ||
46 | 20020121 | 49 | 20020121 |
47 | - (djm) Rework ssh-rand-helper: | 50 | - (djm) Rework ssh-rand-helper: |
@@ -7189,4 +7192,4 @@ | |||
7189 | - Wrote replacements for strlcpy and mkdtemp | 7192 | - Wrote replacements for strlcpy and mkdtemp |
7190 | - Released 1.0pre1 | 7193 | - Released 1.0pre1 |
7191 | 7194 | ||
7192 | $Id: ChangeLog,v 1.1734 2002/01/22 12:09:41 djm Exp $ | 7195 | $Id: ChangeLog,v 1.1735 2002/01/22 12:10:04 djm Exp $ |
diff --git a/authfile.c b/authfile.c index cd600362a..7026e24c4 100644 --- a/authfile.c +++ b/authfile.c | |||
@@ -36,7 +36,7 @@ | |||
36 | */ | 36 | */ |
37 | 37 | ||
38 | #include "includes.h" | 38 | #include "includes.h" |
39 | RCSID("$OpenBSD: authfile.c,v 1.43 2001/12/27 18:22:16 markus Exp $"); | 39 | RCSID("$OpenBSD: authfile.c,v 1.44 2001/12/27 18:26:13 markus Exp $"); |
40 | 40 | ||
41 | #include <openssl/err.h> | 41 | #include <openssl/err.h> |
42 | #include <openssl/evp.h> | 42 | #include <openssl/evp.h> |
@@ -50,6 +50,7 @@ RCSID("$OpenBSD: authfile.c,v 1.43 2001/12/27 18:22:16 markus Exp $"); | |||
50 | #include "ssh.h" | 50 | #include "ssh.h" |
51 | #include "log.h" | 51 | #include "log.h" |
52 | #include "authfile.h" | 52 | #include "authfile.h" |
53 | #include "rsa.h" | ||
53 | 54 | ||
54 | /* Version identification string for SSH v1 identity files. */ | 55 | /* Version identification string for SSH v1 identity files. */ |
55 | static const char authfile_id_string[] = | 56 | static const char authfile_id_string[] = |