pkgsrc/security/ssh2/patches/patch-as
kivinen 08fc2550dd Fixed RSA e=3 bug (most likely nobody uses e=3 rsa keys
on ssh anyways, but better to make sure). Fixed some
	more ssh_*_{en,de}code calls missing necessary casts.
	Disabled x11-security extension on x86_64 as it does not
	work there (uses xauth instead). Updated pkgrevision.
2006-09-22 13:58:46 +00:00

14 lines
570 B
Text

$NetBSD: patch-as,v 1.1 2006/09/22 13:58:46 kivinen Exp $
--- apps/ssh/authc-kerberos.c.orig 2003-12-03 15:17:25.000000000 +0200
+++ apps/ssh/authc-kerberos.c
@@ -127,7 +127,8 @@ void ssh_client_auth_kerberos(SshAuthCli
b = ssh_xbuffer_allocate();
ssh_encode_buffer(b,
SSH_FORMAT_UINT32_STR,
- auth_data.data, auth_data.length,
+ auth_data.data,
+ (size_t) auth_data.length,
SSH_FORMAT_END);
/* Send the authentication request (and complete this operation). */