- OpenBSD CVS updates
   - [ssh-agent.c]
     cleanup_exit() for SIGTERM/SIGHUP, too. from fgsch@ and
     dgaudet@arctic.org
   - [sshconnect.c]
     compare correct version for 1.3 compat mode
diff --git a/ChangeLog b/ChangeLog
index 53236e0..10e92dd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,12 @@
  - Removed "nullok" directive from default PAM configuration files. 
    Added information on enabling EmptyPasswords on openssh+PAM in 
    UPGRADING file.
+ - OpenBSD CVS updates
+   - [ssh-agent.c]
+     cleanup_exit() for SIGTERM/SIGHUP, too. from fgsch@ and 
+     dgaudet@arctic.org
+   - [sshconnect.c]
+     compare correct version for 1.3 compat mode
 
 20000102
  - Prevent multiple inclusion of config.h and defines.h. Suggested
diff --git a/ssh-agent.c b/ssh-agent.c
index 27ab6ea..8a69b1d 100644
--- a/ssh-agent.c
+++ b/ssh-agent.c
@@ -1,4 +1,4 @@
-/*	$OpenBSD: ssh-agent.c,v 1.24 1999/12/15 19:43:10 markus Exp $	*/
+/*	$OpenBSD: ssh-agent.c,v 1.25 2000/01/02 21:51:03 markus Exp $	*/
 
 /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -9,7 +9,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: ssh-agent.c,v 1.24 1999/12/15 19:43:10 markus Exp $");
+RCSID("$OpenBSD: ssh-agent.c,v 1.25 2000/01/02 21:51:03 markus Exp $");
 
 #include "ssh.h"
 #include "rsa.h"
@@ -643,10 +643,10 @@
 		signal(SIGALRM, check_parent_exists);
 		alarm(10);
 	}
-	signal(SIGHUP, cleanup_exit);
-	signal(SIGTERM, cleanup_exit);
 	signal(SIGINT, SIG_IGN);
 	signal(SIGPIPE, SIG_IGN);
+	signal(SIGHUP, cleanup_exit);                                          
+	signal(SIGTERM, cleanup_exit);                                          
 	while (1) {
 		FD_ZERO(&readset);
 		FD_ZERO(&writeset);
diff --git a/sshconnect.c b/sshconnect.c
index 645c4af..e19392a 100644
--- a/sshconnect.c
+++ b/sshconnect.c
@@ -8,7 +8,7 @@
  */
 
 #include "includes.h"
-RCSID("$Id: sshconnect.c,v 1.19 1999/12/21 09:57:20 damien Exp $");
+RCSID("$Id: sshconnect.c,v 1.20 2000/01/03 12:41:05 damien Exp $");
 
 #ifdef HAVE_OPENSSL
 #include <openssl/bn.h>
@@ -1021,7 +1021,7 @@
 	/* We speak 1.3, too. */
 	if (remote_major == 1 && remote_minor == 3) {
 		enable_compat13();
-		if (options.forward_agent && strcmp(remote_version, SSH_VERSION) != 0) {
+		if (options.forward_agent && strcmp(remote_version, "OpenSSH-1.1") != 0) {
 			log("Agent forwarding disabled, remote version '%s' is not compatible.",
 			    remote_version);
 			options.forward_agent = 0;