diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2007-06-18 20:37:33 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2007-06-18 20:37:33 +0000 |
commit | 0ddbd904085be1c4ea71386784effd852fa4d814 (patch) | |
tree | e1d9f71f1db822b5bb2c22c1928d3c4275a5b913 /security/fressh/files | |
parent | 6c3bb987d8a521e419084bf4290f7f93713389b0 (diff) | |
download | ports-0ddbd904085be1c4ea71386784effd852fa4d814.tar.gz ports-0ddbd904085be1c4ea71386784effd852fa4d814.zip |
Notes
Diffstat (limited to 'security/fressh/files')
-rw-r--r-- | security/fressh/files/patch-crypto::ssh_crypto_openssl.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/security/fressh/files/patch-crypto::ssh_crypto_openssl.c b/security/fressh/files/patch-crypto::ssh_crypto_openssl.c index a992a2d8910a..501263d3994c 100644 --- a/security/fressh/files/patch-crypto::ssh_crypto_openssl.c +++ b/security/fressh/files/patch-crypto::ssh_crypto_openssl.c @@ -14,3 +14,12 @@ $FreeBSD$ #include <openssl/opensslv.h> +@@ -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); + } + |