diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sshd.c | 3 |
2 files changed, 6 insertions, 2 deletions
@@ -34,6 +34,9 @@ | |||
34 | - djm@cvs.openbsd.org 2001/10/02 08:38:50 | 34 | - djm@cvs.openbsd.org 2001/10/02 08:38:50 |
35 | [ssh-add.c] | 35 | [ssh-add.c] |
36 | return non-zero exit code on error; ok markus@ | 36 | return non-zero exit code on error; ok markus@ |
37 | - stevesk@cvs.openbsd.org 2001/10/02 22:56:09 | ||
38 | [sshd.c] | ||
39 | #include "channels.h" for channel_set_af() | ||
37 | 40 | ||
38 | 20011001 | 41 | 20011001 |
39 | - (stevesk) loginrec.c: fix type conversion problems exposed when using | 42 | - (stevesk) loginrec.c: fix type conversion problems exposed when using |
@@ -6626,4 +6629,4 @@ | |||
6626 | - Wrote replacements for strlcpy and mkdtemp | 6629 | - Wrote replacements for strlcpy and mkdtemp |
6627 | - Released 1.0pre1 | 6630 | - Released 1.0pre1 |
6628 | 6631 | ||
6629 | $Id: ChangeLog,v 1.1579 2001/10/03 17:43:01 mouring Exp $ | 6632 | $Id: ChangeLog,v 1.1580 2001/10/03 17:46:39 mouring Exp $ |
@@ -40,7 +40,7 @@ | |||
40 | */ | 40 | */ |
41 | 41 | ||
42 | #include "includes.h" | 42 | #include "includes.h" |
43 | RCSID("$OpenBSD: sshd.c,v 1.205 2001/10/01 21:38:53 markus Exp $"); | 43 | RCSID("$OpenBSD: sshd.c,v 1.206 2001/10/02 22:56:09 stevesk Exp $"); |
44 | 44 | ||
45 | #include <openssl/dh.h> | 45 | #include <openssl/dh.h> |
46 | #include <openssl/bn.h> | 46 | #include <openssl/bn.h> |
@@ -71,6 +71,7 @@ RCSID("$OpenBSD: sshd.c,v 1.205 2001/10/01 21:38:53 markus Exp $"); | |||
71 | #include "auth.h" | 71 | #include "auth.h" |
72 | #include "misc.h" | 72 | #include "misc.h" |
73 | #include "dispatch.h" | 73 | #include "dispatch.h" |
74 | #include "channels.h" | ||
74 | 75 | ||
75 | #ifdef LIBWRAP | 76 | #ifdef LIBWRAP |
76 | #include <tcpd.h> | 77 | #include <tcpd.h> |