diff options
author | Marc Laukien <marc@zeroc.com> | 2002-06-23 21:17:04 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-06-23 21:17:04 +0000 |
commit | 59788b8663f1f05a95b7afbbc6d2846dae11c96a (patch) | |
tree | c3ed292df270f11157decb83827d9af4144db52d /cpp/src/IceSSL/OpenSSLJanitors.cpp | |
parent | file run.py was initially added on branch location. (diff) | |
download | ice-59788b8663f1f05a95b7afbbc6d2846dae11c96a.tar.bz2 ice-59788b8663f1f05a95b7afbbc6d2846dae11c96a.tar.xz ice-59788b8663f1f05a95b7afbbc6d2846dae11c96a.zip |
removed spaces after keywords
Diffstat (limited to 'cpp/src/IceSSL/OpenSSLJanitors.cpp')
-rw-r--r-- | cpp/src/IceSSL/OpenSSLJanitors.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/IceSSL/OpenSSLJanitors.cpp b/cpp/src/IceSSL/OpenSSLJanitors.cpp index 7779f3a0959..dda448e67ed 100644 --- a/cpp/src/IceSSL/OpenSSLJanitors.cpp +++ b/cpp/src/IceSSL/OpenSSLJanitors.cpp @@ -18,7 +18,7 @@ IceSSL::OpenSSL::RSAJanitor::RSAJanitor(RSA* rsa) : IceSSL::OpenSSL::RSAJanitor::~RSAJanitor() { - if (_rsa) + if(_rsa) { RSA_free(_rsa); } @@ -44,7 +44,7 @@ IceSSL::OpenSSL::EVP_PKEYJanitor::EVP_PKEYJanitor(EVP_PKEY* evp_pkey) : IceSSL::OpenSSL::EVP_PKEYJanitor::~EVP_PKEYJanitor() { - if (_evp_pkey) + if(_evp_pkey) { EVP_PKEY_free(_evp_pkey); } @@ -70,7 +70,7 @@ IceSSL::OpenSSL::X509_REQJanitor::X509_REQJanitor(X509_REQ* x509_req) : IceSSL::OpenSSL::X509_REQJanitor::~X509_REQJanitor() { - if (_x509_req) + if(_x509_req) { X509_REQ_free(_x509_req); } @@ -96,7 +96,7 @@ IceSSL::OpenSSL::X509Janitor::X509Janitor(X509* x509) : IceSSL::OpenSSL::X509Janitor::~X509Janitor() { - if (_x509) + if(_x509) { X509_free(_x509); } @@ -122,7 +122,7 @@ IceSSL::OpenSSL::BIOJanitor::BIOJanitor(BIO* bio) : IceSSL::OpenSSL::BIOJanitor::~BIOJanitor() { - if (_bio) + if(_bio) { BIO_free(_bio); } |