]> andersk Git - openssh.git/commitdiff
- OpenBSD CVS Updates:
authordjm <djm>
Fri, 23 Jun 2000 00:16:38 +0000 (00:16 +0000)
committerdjm <djm>
Fri, 23 Jun 2000 00:16:38 +0000 (00:16 +0000)
   - 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

CREDITS
ChangeLog
auth-krb4.c
key.c
radix.c
sshd.c
uuencode.c

diff --git a/CREDITS b/CREDITS
index 977129388ed75a718a11a124ce9674e0003ef363..e47cf456752c3623b3daf3834fab44d3d34c68ad 100644 (file)
--- a/CREDITS
+++ b/CREDITS
@@ -51,6 +51,7 @@ Phil Karn <karn@ka9q.ampr.org> - Autoconf fix
 Phill Camp <P.S.S.Camp@ukc.ac.uk> - login code fix
 SAKAI Kiyotaka <ksakai@kso.netwk.ntt-at.co.jp> - Multiple bugfixes
 Simon Wilkinson <sxw@dcs.ed.ac.uk> - PAM fixes
+Svante Signell <svante.signell@telia.com> - Bugfixes
 Thomas Neumann <tom@smart.ruhr.de> - Shadow passwords
 Tom Bertelson's <tbert@abac.com> - AIX auth fixes
 Tor-Ake Fransson <torake@hotmail.com> - AIX support
index 23e96956063f4a96967152315072a9fab6cab48f..37d9db662454e7e7bd0fe09e60a585bf05df2f24 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,13 @@
  - (djm) Use sa_family_t in prototype for rresvport_af. Patch from 
    Svante Signell <svante.signell@telia.com>
  - (djm) Autoconf logic to define sa_family_t if it is missing
+ - 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
 
 20000622
  - (djm) Automatically generate host key during "make install". Suggested
index a26842713aaef11eedb6acd9d5f75fae2ec5451e..e32089b74379a7edfebdd31b87c6a9dcd8e75d04 100644 (file)
@@ -9,6 +9,8 @@
 #include "ssh.h"
 #include "servconf.h"
 
+RCSID("$OpenBSD: auth-krb4.c,v 1.15 2000/06/22 23:54:59 djm Exp $");
+
 #ifdef KRB4
 char *ticket = NULL;
 
diff --git a/key.c b/key.c
index be38a88f5e6c4ef7cc312fa75defb319298cf36d..764f1f227fbba1c818348ba009632354dfa73b23 100644 (file)
--- a/key.c
+++ b/key.c
@@ -41,6 +41,8 @@
 #include "dsa.h"
 #include "uuencode.h"
 
+RCSID("$OpenBSD: key.c,v 1.9 2000/06/22 23:55:00 djm Exp $");
+
 #define SSH_DSS "ssh-dss"
 
 Key *
diff --git a/radix.c b/radix.c
index 033773344152c22aecfab56fb62bbd2b428021c0..7e668ea656682fabd73f56ad7accece5d95a1ab9 100644 (file)
--- a/radix.c
+++ b/radix.c
@@ -7,6 +7,8 @@
 #include "includes.h"
 #include "uuencode.h"
 
+RCSID("$OpenBSD: radix.c,v 1.12 2000/06/22 23:55:00 djm Exp $");
+
 #ifdef AFS
 #include <krb.h>
 
diff --git a/sshd.c b/sshd.c
index ec860024b3d7e6a367eb7d08e2d36b18de0d1dc6..32a6fac7fd25e6a814caf8ad577931a213220a3f 100644 (file)
--- a/sshd.c
+++ b/sshd.c
@@ -14,7 +14,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: sshd.c,v 1.118 2000/05/25 20:45:20 markus Exp $");
+RCSID("$OpenBSD: sshd.c,v 1.119 2000/06/22 16:32:27 markus Exp $");
 
 #include "xmalloc.h"
 #include "rsa.h"
@@ -296,7 +296,7 @@ sshd_exchange_identification(int sock_in, int sock_out)
 
                /* Read other side\'s version identification. */
                for (i = 0; i < sizeof(buf) - 1; i++) {
-                       if (read(sock_in, &buf[i], 1) != 1) {
+                       if (atomicio(read, sock_in, &buf[i], 1) != 1) {
                                log("Did not receive ident string from %s.", get_remote_ipaddr());
                                fatal_cleanup();
                        }
index 2540d7564646aebb0543962f613ba3d20a232964..27ba6559e0d2e37a30e219e1f5b8555463f9fcb3 100644 (file)
@@ -4,6 +4,8 @@
 #include "includes.h"
 #include "xmalloc.h"
 
+RCSID("$OpenBSD: uuencode.c,v 1.6 2000/06/22 23:55:00 djm Exp $");
+
 int
 uuencode(unsigned char *src, unsigned int srclength,
     char *target, size_t targsize)
This page took 0.114104 seconds and 5 git commands to generate.