$FreeBSD: ports/security/fressh/files/patch-crypto::ssh_crypto_openssl.c,v 1.4 2007/06/18 20:42:12 danfe Exp $ --- crypto/ssh_crypto_openssl.c.orig +++ crypto/ssh_crypto_openssl.c @@ -44,8 +44,10 @@ #include #include #include +#include #include +#include #include @@ -183,7 +183,7 @@ new_bn = BN_bin2bn(data, bytes, &((*num)->num)); if (new_bn == NULL) return (-1); - (BIGNUM *) * num = new_bn; + *num = (BIGNUM *) new_bn; return (0); }