summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/SslRSAKeyPair.cpp
diff options
context:
space:
mode:
authorAnthony Neal <aneal@zeroc.com>2002-02-15 18:35:45 +0000
committerAnthony Neal <aneal@zeroc.com>2002-02-15 18:35:45 +0000
commit000f9c375c90248b53edd1b3d505391d40b96eff (patch)
treea2c28c0c8b5eb5ef06121bbb46bed16fbfcdf420 /cpp/src/Ice/SslRSAKeyPair.cpp
parentWhoops, forgot these. (diff)
downloadice-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.cpp2
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);