]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorAutomatic source maintenance <squidadm@squid-cache.org>
Fri, 28 Oct 2011 00:19:03 +0000 (18:19 -0600)
committerAutomatic source maintenance <squidadm@squid-cache.org>
Fri, 28 Oct 2011 00:19:03 +0000 (18:19 -0600)
src/DiskIO/IpcIo/IpcIoFile.cc
src/ssl/support.cc

index 63ca74198f6418f6f5b98645b0e5f0f934b51699..3087372251e1697404b447bab36f7579c6afee30 100644 (file)
@@ -866,7 +866,7 @@ void
 IpcIoClaimMemoryNeedsRr::run(const RunnerRegistry &)
 {
     const int itemsCount = Ipc::FewToFewBiQueue::MaxItemsCount(
-        ::Config.workers, ::Config.cacheSwap.n_strands, QueueCapacity);
+                               ::Config.workers, ::Config.cacheSwap.n_strands, QueueCapacity);
     // the maximum number of shared I/O pages is approximately the
     // number of queue slots, we add a fudge factor to that to account
     // for corner cases where I/O pages are created before queue
index 6953459e5d08075640c01c7b3d1ac31271d7a6b2..8a04b5386f27d7c9a264db01f2eaf0e943560bf2 100644 (file)
@@ -1283,10 +1283,10 @@ static X509 * readSslX509CertificatesChain(char const * certFilename,  STACK_OF(
 
     if (certificate && chain) {
 
-        if (X509_check_issued(certificate, certificate) == X509_V_OK) 
+        if (X509_check_issued(certificate, certificate) == X509_V_OK)
             debugs(83, 5, "Certificate is self-signed, will not be chained");
         else {
-            if(sk_X509_push(chain, certificate))
+            if (sk_X509_push(chain, certificate))
                 CRYPTO_add(&(certificate->references), 1, CRYPTO_LOCK_X509);
             else
                 debugs(83, DBG_IMPORTANT, "WARNING: unable to add signing certificate to cert chain");
@@ -1297,7 +1297,7 @@ static X509 * readSslX509CertificatesChain(char const * certFilename,  STACK_OF(
             }
         }
     }
-    
+
     return certificate;
 }