summaryrefslogtreecommitdiff
path: root/auth2.c
diff options
context:
space:
mode:
Diffstat (limited to 'auth2.c')
-rw-r--r--auth2.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/auth2.c b/auth2.c
index f34b586d4..60f8f98e6 100644
--- a/auth2.c
+++ b/auth2.c
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: auth2.c,v 1.19 2000/10/11 20:27:23 markus Exp $"); 26RCSID("$OpenBSD: auth2.c,v 1.20 2000/10/14 12:16:56 markus Exp $");
27 27
28#ifdef HAVE_OSF_SIA 28#ifdef HAVE_OSF_SIA
29# include <sia.h> 29# include <sia.h>
@@ -442,10 +442,10 @@ userauth_pubkey(Authctxt *authctxt)
442 sig = packet_get_string(&slen); 442 sig = packet_get_string(&slen);
443 packet_done(); 443 packet_done();
444 buffer_init(&b); 444 buffer_init(&b);
445 if (datafellows & SSH_COMPAT_SESSIONID_ENCODING) { 445 if (datafellows & SSH_OLD_SESSIONID) {
446 buffer_put_string(&b, session_id2, session_id2_len);
447 } else {
448 buffer_append(&b, session_id2, session_id2_len); 446 buffer_append(&b, session_id2, session_id2_len);
447 } else {
448 buffer_put_string(&b, session_id2, session_id2_len);
449 } 449 }
450 /* reconstruct packet */ 450 /* reconstruct packet */
451 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST); 451 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);