Bugzilla – Attachment 1321 Details for
Bug 1335
cipher.c does not compile.
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
Output of make showing compiler errors for file cipher.c
ab.ab (text/plain), 9.18 KB, created by
Judah Levine
on 2007-07-09 23:42:08 AEST
(
hide
)
Description:
Output of make showing compiler errors for file cipher.c
Filename:
MIME Type:
Creator:
Judah Levine
Created:
2007-07-09 23:42:08 AEST
Size:
9.18 KB
patch
obsolete
>Script started on Mon Jul 9 07:07:32 2007 ># make >(cd openbsd-compat && make) >cc -std -g -I. -I. -I/usr/local/ssl/include -DSSHDIR=\"/usr/local/etc\" -D_PATH_SSH_PROGRAM=\"/usr/local/bin/ssh\" -D_PATH_SSH_ASKPASS_DEFAULT=\"/usr/local/libexec/ssh-askpass\" -D_PATH_SFTP_SERVER=\"/usr/local/libexec/sftp-server\" -D_PATH_SSH_KEY_SIGN=\"/usr/local/libexec/ssh-keysign\" -D_PATH_SSH_PIDDIR=\"/var/run\" -D_PATH_PRIVSEP_CHROOT_DIR=\"/var/empty\" -DSSH_RAND_HELPER=\"/usr/local/libexec/ssh-rand-helper\" -DHAVE_CONFIG_H -c cipher.c >cc: Warning: cipher.c, line 68: In the initializer for ciphers[0].evptype, the referenced type of the pointer value "EVP_enc_null" is "function () returning pointer to struct evp_cipher_st", which is not compatible with "function () returning pointer to const struct evp_cipher_st". (ptrmismatch) > { "none", SSH_CIPHER_NONE, 8, 0, 0, EVP_enc_null }, >----------------------------------------------------------^ >cc: Warning: cipher.c, line 69: In the initializer for ciphers[1].evptype, the referenced type of the pointer value "EVP_des_cbc" is "function () returning pointer to struct evp_cipher_st", which is not compatible with "function () returning pointer to const struct evp_cipher_st". (ptrmismatch) > { "des", SSH_CIPHER_DES, 8, 8, 0, EVP_des_cbc }, >---------------------------------------------------------^ >cc: Warning: cipher.c, line 73: In the initializer for ciphers[4].evptype, the referenced type of the pointer value "EVP_des_ede3_cbc" is "function () returning pointer to struct evp_cipher_st", which is not compatible with "function () returning pointer to const struct evp_cipher_st". (ptrmismatch) > { "3des-cbc", SSH_CIPHER_SSH2, 8, 24, 0, EVP_des_ede3_cbc }, >-----------------------------------------------------------^ >cc: Warning: cipher.c, line 74: In the initializer for ciphers[5].evptype, the referenced type of the pointer value "EVP_bf_cbc" is "function () returning pointer to struct evp_cipher_st", which is not compatible with "function () returning pointer to const struct evp_cipher_st". (ptrmismatch) > { "blowfish-cbc", SSH_CIPHER_SSH2, 8, 16, 0, EVP_bf_cbc }, >-----------------------------------------------------------^ >cc: Warning: cipher.c, line 75: In the initializer for ciphers[6].evptype, the referenced type of the pointer value "EVP_cast5_cbc" is "function () returning pointer to struct evp_cipher_st", which is not compatible with "function () returning pointer to const struct evp_cipher_st". (ptrmismatch) > { "cast128-cbc", SSH_CIPHER_SSH2, 8, 16, 0, EVP_cast5_cbc }, >-----------------------------------------------------------^ >cc: Warning: cipher.c, line 76: In the initializer for ciphers[7].evptype, the referenced type of the pointer value "EVP_rc4" is "function () returning pointer to struct evp_cipher_st", which is not compatible with "function () returning pointer to const struct evp_cipher_st". (ptrmismatch) > { "arcfour", SSH_CIPHER_SSH2, 8, 16, 0, EVP_rc4 }, >-----------------------------------------------------------^ >cc: Warning: cipher.c, line 77: In the initializer for ciphers[8].evptype, the referenced type of the pointer value "EVP_rc4" is "function () returning pointer to struct evp_cipher_st", which is not compatible with "function () returning pointer to const struct evp_cipher_st". (ptrmismatch) > { "arcfour128", SSH_CIPHER_SSH2, 8, 16, 1536, EVP_rc4 }, >--------------------------------------------------------------^ >cc: Warning: cipher.c, line 78: In the initializer for ciphers[9].evptype, the referenced type of the pointer value "EVP_rc4" is "function () returning pointer to struct evp_cipher_st", which is not compatible with "function () returning pointer to const struct evp_cipher_st". (ptrmismatch) > { "arcfour256", SSH_CIPHER_SSH2, 8, 32, 1536, EVP_rc4 }, >--------------------------------------------------------------^ >cc: Warning: cipher.c, line 96: In this declaration, parameter 1 has a different type than specified in an earlier declaration of this function. (mismatparam) >cipher_blocksize(const Cipher *c) >^ >cc: Error: cipher.c, line 96: In this declaration, the type of "cipher_blocksize" is not compatible with the type of a previous declaration of "cipher_blocksize" at line number 82 in file cipher.h. (notcompat) >cipher_blocksize(const Cipher *c) >^ >cc: Warning: cipher.c, line 102: In this declaration, parameter 1 has a different type than specified in an earlier declaration of this function. (mismatparam) >cipher_keylen(const Cipher *c) >^ >cc: Error: cipher.c, line 102: In this declaration, the type of "cipher_keylen" is not compatible with the type of a previous declaration of "cipher_keylen" at line number 83 in file cipher.h. (notcompat) >cipher_keylen(const Cipher *c) >^ >cc: Warning: cipher.c, line 108: In this declaration, parameter 1 has a different type than specified in an earlier declaration of this function. (mismatparam) >cipher_get_number(const Cipher *c) >^ >cc: Error: cipher.c, line 108: In this declaration, the type of "cipher_get_number" is not compatible with the type of a previous declaration of "cipher_get_number" at line number 85 in file cipher.h. (notcompat) >cipher_get_number(const Cipher *c) >^ >cc: Warning: cipher.c, line 126: In this declaration, parameter 1 has a different type than specified in an earlier declaration of this function. (mismatparam) >cipher_by_name(const char *name) >^ >cc: Error: cipher.c, line 126: In this declaration, the type of "cipher_by_name" is not compatible with the type of a previous declaration of "cipher_by_name" at line number 72 in file cipher.h. (notcompat) >cipher_by_name(const char *name) >^ >cc: Warning: cipher.c, line 147: In this declaration, parameter 1 has a different type than specified in an earlier declaration of this function. (mismatparam) >ciphers_valid(const char *names) >^ >cc: Error: cipher.c, line 147: In this declaration, the type of "ciphers_valid" is not compatible with the type of a previous declaration of "ciphers_valid" at line number 76 in file cipher.h. (notcompat) >ciphers_valid(const char *names) >^ >cc: Warning: cipher.c, line 178: In this declaration, parameter 1 has a different type than specified in an earlier declaration of this function. (mismatparam) >cipher_number(const char *name) >^ >cc: Error: cipher.c, line 178: In this declaration, the type of "cipher_number" is not compatible with the type of a previous declaration of "cipher_number" at line number 74 in file cipher.h. (notcompat) >cipher_number(const char *name) >^ >cc: Warning: cipher.c, line 197: In this declaration, parameter 3 has a different type than specified in an earlier declaration of this function. (mismatparam) >cipher_init(CipherContext *cc, Cipher *cipher, >^ >cc: Error: cipher.c, line 197: In this declaration, the type of "cipher_init" is not compatible with the type of a previous declaration of "cipher_init" at line number 77 in file cipher.h. (notcompat) >cipher_init(CipherContext *cc, Cipher *cipher, >^ >cc: Warning: cipher.c, line 270: In this declaration, parameter 3 has a different type than specified in an earlier declaration of this function. (mismatparam) >cipher_crypt(CipherContext *cc, u_char *dest, const u_char *src, u_int len) >^ >cc: Error: cipher.c, line 270: In this declaration, the type of "cipher_crypt" is not compatible with the type of a previous declaration of "cipher_crypt" at line number 79 in file cipher.h. (notcompat) >cipher_crypt(CipherContext *cc, u_char *dest, const u_char *src, u_int len) >^ >cc: Warning: cipher.c, line 291: In this declaration, parameter 3 has a different type than specified in an earlier declaration of this function. (mismatparam) >cipher_set_key_string(CipherContext *cc, Cipher *cipher, >^ >cc: Error: cipher.c, line 291: In this declaration, the type of "cipher_set_key_string" is not compatible with the type of a previous declaration of "cipher_set_key_string" at line number 81 in file cipher.h. (notcompat) >cipher_set_key_string(CipherContext *cc, Cipher *cipher, >^ >cc: Warning: cipher.c, line 314: In this declaration, parameter 1 has a different type than specified in an earlier declaration of this function. (mismatparam) >cipher_get_keyiv_len(const CipherContext *cc) >^ >cc: Error: cipher.c, line 314: In this declaration, the type of "cipher_get_keyiv_len" is not compatible with the type of a previous declaration of "cipher_get_keyiv_len" at line number 88 in file cipher.h. (notcompat) >cipher_get_keyiv_len(const CipherContext *cc) >^ >cc: Warning: cipher.c, line 400: In this declaration, parameter 1 has a different type than specified in an earlier declaration of this function. (mismatparam) >cipher_get_keycontext(const CipherContext *cc, u_char *dat) >^ >cc: Error: cipher.c, line 400: In this declaration, the type of "cipher_get_keycontext" is not compatible with the type of a previous declaration of "cipher_get_keycontext" at line number 89 in file cipher.h. (notcompat) >cipher_get_keycontext(const CipherContext *cc, u_char *dat) >^ >cc: Error: cipher.c, line 420: In this statement, "c->evptype" and "EVP_rc4" cannot be compared for equality or inequality. (noequality) > if (c->evptype == EVP_rc4 || c->evptype == EVP_acss) { >------------^ >*** Exit 1 >Stop. ># ^D >script done on Mon Jul 9 07:07:47 2007
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 Raw
Actions:
View
Attachments on
bug 1335
: 1321