fix compile warnings

This commit is contained in:
Love Hornquist Astrand
2010-06-29 11:57:56 -07:00
parent 4f11e546b5
commit 5ca101c63e
2 changed files with 2 additions and 2 deletions

View File

@@ -513,7 +513,7 @@ bn2heim_int(BIGNUM *bn, heim_integer *integer)
*/ */
int int
i2d_DHparams(DH *dh, const char **pp) i2d_DHparams(DH *dh, unsigned char **pp)
{ {
DHParameter data; DHParameter data;
size_t size; size_t size;

View File

@@ -140,7 +140,7 @@ int DH_check_pubkey(const DH *, const BIGNUM *, int *);
int DH_generate_key(DH *); int DH_generate_key(DH *);
int DH_compute_key(unsigned char *,const BIGNUM *,DH *); int DH_compute_key(unsigned char *,const BIGNUM *,DH *);
int i2d_DHparams(DH *, const char **); int i2d_DHparams(DH *, unsigned char **);
#endif /* _HEIM_DH_H */ #endif /* _HEIM_DH_H */