From 59788b8663f1f05a95b7afbbc6d2846dae11c96a Mon Sep 17 00:00:00 2001 From: Marc Laukien Date: Sun, 23 Jun 2002 21:17:04 +0000 Subject: removed spaces after keywords --- cpp/src/IceSSL/OpenSSLJanitors.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'cpp/src/IceSSL/OpenSSLJanitors.cpp') 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); } -- cgit v1.2.3