Bugzilla – Attachment 152 Details for
Bug 371
OpenSSH fails to build on Alpha True64 in cipher.c
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Cast EVP_rc4 to void * for comparison
openssh-cipher_evp_void.patch (text/plain), 675 bytes, created by
Darren Tucker
on 2002-09-29 17:58:03 AEST
(
hide
)
Description:
Cast EVP_rc4 to void * for comparison
Filename:
MIME Type:
Creator:
Darren Tucker
Created:
2002-09-29 17:58:03 AEST
Size:
675 bytes
patch
obsolete
>Index: cipher.c >=================================================================== >RCS file: /cvs/openssh/cipher.c,v >retrieving revision 1.59 >diff -u -r1.59 cipher.c >--- cipher.c 10 Sep 2002 12:26:18 -0000 1.59 >+++ cipher.c 29 Sep 2002 07:50:48 -0000 >@@ -718,7 +718,7 @@ > Cipher *c = cc->cipher; > int plen = 0; > >- if (c->evptype == EVP_rc4) { >+ if (c->evptype == (void *)EVP_rc4) { > plen = EVP_X_STATE_LEN(cc->evp); > if (dat == NULL) > return (plen); >@@ -733,7 +733,7 @@ > Cipher *c = cc->cipher; > int plen; > >- if (c->evptype == EVP_rc4) { >+ if (c->evptype == (void *)EVP_rc4) { > plen = EVP_X_STATE_LEN(cc->evp); > memcpy(EVP_X_STATE(cc->evp), dat, plen); > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 371
: 152