diff options
author | Damien Miller <djm@mindrot.org> | 2000-06-23 10:16:38 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2000-06-23 10:16:38 +1000 |
commit | bf7f466206d4ca43c66d910099b2047df5659350 (patch) | |
tree | 4ada535baf0220a2007b046432e4614054e06a9f | |
parent | b54b40ef06517dc3091253228f06d3bd54f19a82 (diff) |
- OpenBSD CVS Updates:
- markus@cvs.openbsd.org 2000/06/22 10:32:27
[sshd.c]
missing atomicio; report from Steve.Marquess@DET.AMEDD.ARMY.MIL
- djm@cvs.openbsd.org 2000/06/22 17:55:00
[auth-krb4.c key.c radix.c uuencode.c]
Missing CVS idents; ok markus
-rw-r--r-- | CREDITS | 1 | ||||
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | auth-krb4.c | 2 | ||||
-rw-r--r-- | key.c | 2 | ||||
-rw-r--r-- | radix.c | 2 | ||||
-rw-r--r-- | sshd.c | 4 | ||||
-rw-r--r-- | uuencode.c | 2 |
7 files changed, 18 insertions, 2 deletions
@@ -51,6 +51,7 @@ Phil Karn <karn@ka9q.ampr.org> - Autoconf fix | |||
51 | Phill Camp <P.S.S.Camp@ukc.ac.uk> - login code fix | 51 | Phill Camp <P.S.S.Camp@ukc.ac.uk> - login code fix |
52 | SAKAI Kiyotaka <ksakai@kso.netwk.ntt-at.co.jp> - Multiple bugfixes | 52 | SAKAI Kiyotaka <ksakai@kso.netwk.ntt-at.co.jp> - Multiple bugfixes |
53 | Simon Wilkinson <sxw@dcs.ed.ac.uk> - PAM fixes | 53 | Simon Wilkinson <sxw@dcs.ed.ac.uk> - PAM fixes |
54 | Svante Signell <svante.signell@telia.com> - Bugfixes | ||
54 | Thomas Neumann <tom@smart.ruhr.de> - Shadow passwords | 55 | Thomas Neumann <tom@smart.ruhr.de> - Shadow passwords |
55 | Tom Bertelson's <tbert@abac.com> - AIX auth fixes | 56 | Tom Bertelson's <tbert@abac.com> - AIX auth fixes |
56 | Tor-Ake Fransson <torake@hotmail.com> - AIX support | 57 | Tor-Ake Fransson <torake@hotmail.com> - AIX support |
@@ -2,6 +2,13 @@ | |||
2 | - (djm) Use sa_family_t in prototype for rresvport_af. Patch from | 2 | - (djm) Use sa_family_t in prototype for rresvport_af. Patch from |
3 | Svante Signell <svante.signell@telia.com> | 3 | Svante Signell <svante.signell@telia.com> |
4 | - (djm) Autoconf logic to define sa_family_t if it is missing | 4 | - (djm) Autoconf logic to define sa_family_t if it is missing |
5 | - OpenBSD CVS Updates: | ||
6 | - markus@cvs.openbsd.org 2000/06/22 10:32:27 | ||
7 | [sshd.c] | ||
8 | missing atomicio; report from Steve.Marquess@DET.AMEDD.ARMY.MIL | ||
9 | - djm@cvs.openbsd.org 2000/06/22 17:55:00 | ||
10 | [auth-krb4.c key.c radix.c uuencode.c] | ||
11 | Missing CVS idents; ok markus | ||
5 | 12 | ||
6 | 20000622 | 13 | 20000622 |
7 | - (djm) Automatically generate host key during "make install". Suggested | 14 | - (djm) Automatically generate host key during "make install". Suggested |
diff --git a/auth-krb4.c b/auth-krb4.c index a26842713..e32089b74 100644 --- a/auth-krb4.c +++ b/auth-krb4.c | |||
@@ -9,6 +9,8 @@ | |||
9 | #include "ssh.h" | 9 | #include "ssh.h" |
10 | #include "servconf.h" | 10 | #include "servconf.h" |
11 | 11 | ||
12 | RCSID("$OpenBSD: auth-krb4.c,v 1.15 2000/06/22 23:54:59 djm Exp $"); | ||
13 | |||
12 | #ifdef KRB4 | 14 | #ifdef KRB4 |
13 | char *ticket = NULL; | 15 | char *ticket = NULL; |
14 | 16 | ||
@@ -41,6 +41,8 @@ | |||
41 | #include "dsa.h" | 41 | #include "dsa.h" |
42 | #include "uuencode.h" | 42 | #include "uuencode.h" |
43 | 43 | ||
44 | RCSID("$OpenBSD: key.c,v 1.9 2000/06/22 23:55:00 djm Exp $"); | ||
45 | |||
44 | #define SSH_DSS "ssh-dss" | 46 | #define SSH_DSS "ssh-dss" |
45 | 47 | ||
46 | Key * | 48 | Key * |
@@ -7,6 +7,8 @@ | |||
7 | #include "includes.h" | 7 | #include "includes.h" |
8 | #include "uuencode.h" | 8 | #include "uuencode.h" |
9 | 9 | ||
10 | RCSID("$OpenBSD: radix.c,v 1.12 2000/06/22 23:55:00 djm Exp $"); | ||
11 | |||
10 | #ifdef AFS | 12 | #ifdef AFS |
11 | #include <krb.h> | 13 | #include <krb.h> |
12 | 14 | ||
@@ -14,7 +14,7 @@ | |||
14 | */ | 14 | */ |
15 | 15 | ||
16 | #include "includes.h" | 16 | #include "includes.h" |
17 | RCSID("$OpenBSD: sshd.c,v 1.118 2000/05/25 20:45:20 markus Exp $"); | 17 | RCSID("$OpenBSD: sshd.c,v 1.119 2000/06/22 16:32:27 markus Exp $"); |
18 | 18 | ||
19 | #include "xmalloc.h" | 19 | #include "xmalloc.h" |
20 | #include "rsa.h" | 20 | #include "rsa.h" |
@@ -296,7 +296,7 @@ sshd_exchange_identification(int sock_in, int sock_out) | |||
296 | 296 | ||
297 | /* Read other side\'s version identification. */ | 297 | /* Read other side\'s version identification. */ |
298 | for (i = 0; i < sizeof(buf) - 1; i++) { | 298 | for (i = 0; i < sizeof(buf) - 1; i++) { |
299 | if (read(sock_in, &buf[i], 1) != 1) { | 299 | if (atomicio(read, sock_in, &buf[i], 1) != 1) { |
300 | log("Did not receive ident string from %s.", get_remote_ipaddr()); | 300 | log("Did not receive ident string from %s.", get_remote_ipaddr()); |
301 | fatal_cleanup(); | 301 | fatal_cleanup(); |
302 | } | 302 | } |
diff --git a/uuencode.c b/uuencode.c index 2540d7564..27ba6559e 100644 --- a/uuencode.c +++ b/uuencode.c | |||
@@ -4,6 +4,8 @@ | |||
4 | #include "includes.h" | 4 | #include "includes.h" |
5 | #include "xmalloc.h" | 5 | #include "xmalloc.h" |
6 | 6 | ||
7 | RCSID("$OpenBSD: uuencode.c,v 1.6 2000/06/22 23:55:00 djm Exp $"); | ||
8 | |||
7 | int | 9 | int |
8 | uuencode(unsigned char *src, unsigned int srclength, | 10 | uuencode(unsigned char *src, unsigned int srclength, |
9 | char *target, size_t targsize) | 11 | char *target, size_t targsize) |