diff options
author | Anthony Neal <aneal@zeroc.com> | 2002-02-15 18:35:45 +0000 |
---|---|---|
committer | Anthony Neal <aneal@zeroc.com> | 2002-02-15 18:35:45 +0000 |
commit | 000f9c375c90248b53edd1b3d505391d40b96eff (patch) | |
tree | a2c28c0c8b5eb5ef06121bbb46bed16fbfcdf420 /cpp/src/Ice/SslRSAKeyPair.cpp | |
parent | Whoops, forgot these. (diff) | |
download | ice-000f9c375c90248b53edd1b3d505391d40b96eff.tar.bz2 ice-000f9c375c90248b53edd1b3d505391d40b96eff.tar.xz ice-000f9c375c90248b53edd1b3d505391d40b96eff.zip |
Tested, still problems with Glacier, everything else seems fine.
Diffstat (limited to 'cpp/src/Ice/SslRSAKeyPair.cpp')
-rw-r--r-- | cpp/src/Ice/SslRSAKeyPair.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/SslRSAKeyPair.cpp b/cpp/src/Ice/SslRSAKeyPair.cpp index c6af6b75767..18842e22bf0 100644 --- a/cpp/src/Ice/SslRSAKeyPair.cpp +++ b/cpp/src/Ice/SslRSAKeyPair.cpp @@ -97,7 +97,7 @@ IceSecurity::Ssl::OpenSSL::RSAKeyPair::certToByteSeq(ByteSeq& certSeq) // We have to do this because i2d_X509_PUBKEY changes the pointer.
unsigned char* pubKeyBuff = publicKeyBuffer;
- int retSize = i2d_X509(_publicKey, &pubKeyBuff);
+ i2d_X509(_publicKey, &pubKeyBuff);
ucharToByteSeq(publicKeyBuffer, pubKeySize, certSeq);
|