1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
$NetBSD: patch-az,v 1.1 2006/09/22 13:58:46 kivinen Exp $
--- apps/ssh/auths-pubkey.c.orig 2003-12-03 15:17:25.000000000 +0200
+++ apps/ssh/auths-pubkey.c
@@ -1103,7 +1103,7 @@ Boolean ssh_server_auth_pubkey_verify(Ss
strlen(service),
SSH_FORMAT_UINT32_STR, SSH_AUTH_PUBKEY,
strlen(SSH_AUTH_PUBKEY),
- SSH_FORMAT_BOOLEAN, TRUE,
+ SSH_FORMAT_BOOLEAN, (Boolean) TRUE,
SSH_FORMAT_UINT32_STR, certs_type,
strlen((char *)certs_type),
SSH_FORMAT_UINT32_STR, certs, tbloblen,
@@ -1122,7 +1122,7 @@ Boolean ssh_server_auth_pubkey_verify(Ss
strlen(service),
/* against the draft. Here should be 'string
"publickey"'*/
- SSH_FORMAT_BOOLEAN, TRUE,
+ SSH_FORMAT_BOOLEAN, (Boolean) TRUE,
/* against the draft. Here should be 'string
public key algorith name'*/
SSH_FORMAT_UINT32_STR, certs, tbloblen,
|