08fc2550dd
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.
14 lines
570 B
Text
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). */
|