summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Steves <stevesk@pobox.com>2001-02-08 19:16:32 +0000
committerKevin Steves <stevesk@pobox.com>2001-02-08 19:16:32 +0000
commit4abe4def70f501b504b9bf47645b07e4976514eb (patch)
tree5957c3bc2d697e20cfedfe183678363fa98e6a6f
parentfc032bbf2f9fc60cb9014f4400c235c79a1e74f7 (diff)
- (stevesk) OpenBSD sync:
- markus@cvs.openbsd.org 2001/02/08 11:20:01 [auth2.c] strict checking - markus@cvs.openbsd.org 2001/02/08 11:15:22 [version.h] update to 2.3.2 - markus@cvs.openbsd.org 2001/02/08 11:12:30 [auth2.c] fix typo
-rw-r--r--ChangeLog10
-rw-r--r--auth2.c4
-rw-r--r--version.h4
3 files changed, 14 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index c58c5f11d..8765f2556 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,16 @@
6 <Lutz.Jaenicke@aet.TU-Cottbus.DE> 6 <Lutz.Jaenicke@aet.TU-Cottbus.DE>
7 - (bal) double entry in configure.in. Pointed out by Lutz Jaenicke 7 - (bal) double entry in configure.in. Pointed out by Lutz Jaenicke
8 <Lutz.Jaenicke@aet.TU-Cottbus.DE> 8 <Lutz.Jaenicke@aet.TU-Cottbus.DE>
9 - (stevesk) OpenBSD sync:
10 - markus@cvs.openbsd.org 2001/02/08 11:20:01
11 [auth2.c]
12 strict checking
13 - markus@cvs.openbsd.org 2001/02/08 11:15:22
14 [version.h]
15 update to 2.3.2
16 - markus@cvs.openbsd.org 2001/02/08 11:12:30
17 [auth2.c]
18 fix typo
9 19
1020010208 2020010208
11 - (djm) Don't delete external askpass program in make uninstall target. 21 - (djm) Don't delete external askpass program in make uninstall target.
diff --git a/auth2.c b/auth2.c
index 9cfb3c1a1..f2f4812e7 100644
--- a/auth2.c
+++ b/auth2.c
@@ -305,7 +305,7 @@ userauth_reply(Authctxt *authctxt, int authenticated)
305 char *methods; 305 char *methods;
306 306
307 /* XXX todo: check if multiple auth methods are needed */ 307 /* XXX todo: check if multiple auth methods are needed */
308 if (authenticated) { 308 if (authenticated == 1) {
309#ifdef WITH_AIXAUTHENTICATE 309#ifdef WITH_AIXAUTHENTICATE
310 /* We don't have a pty yet, so just label the line as "ssh" */ 310 /* We don't have a pty yet, so just label the line as "ssh" */
311 if (loginsuccess(authctxt->user?authctxt->user:"NOUSER", 311 if (loginsuccess(authctxt->user?authctxt->user:"NOUSER",
@@ -512,7 +512,7 @@ userauth_pubkey(Authctxt *authctxt)
512 packet_put_string(pkblob, blen); 512 packet_put_string(pkblob, blen);
513 packet_send(); 513 packet_send();
514 packet_write_wait(); 514 packet_write_wait();
515 authenticated = -1; 515 authctxt->postponed = 1;
516 } 516 }
517 } 517 }
518 if (authenticated != 1) 518 if (authenticated != 1)
diff --git a/version.h b/version.h
index 591fbdfc6..7e86a3e7c 100644
--- a/version.h
+++ b/version.h
@@ -1,3 +1,3 @@
1/* $OpenBSD: version.h,v 1.16 2001/01/08 22:29:05 markus Exp $ */ 1/* $OpenBSD: version.h,v 1.17 2001/02/08 18:15:22 markus Exp $ */
2 2
3#define SSH_VERSION "OpenSSH_2.3.1p1" 3#define SSH_VERSION "OpenSSH_2.3.2p1"