]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorAutomatic source maintenance <squidadm@squid-cache.org>
Sat, 29 May 2010 01:39:35 +0000 (19:39 -0600)
committerAutomatic source maintenance <squidadm@squid-cache.org>
Sat, 29 May 2010 01:39:35 +0000 (19:39 -0600)
src/adaptation/ecap/ServiceRep.cc
src/adaptation/icap/ServiceRep.cc
src/main.cc

index 0961cb84103d2d2f988f1d3561159e8ed8a4f226..41708bc573e3f4bf5a8941406cb5ad02831a449e 100644 (file)
@@ -94,7 +94,7 @@ void Adaptation::Ecap::ServiceRep::detach()
 {
     isDetached = true;
 }
-    
+
 bool Adaptation::Ecap::ServiceRep::detached() const
 {
     return isDetached;
@@ -121,7 +121,7 @@ Adaptation::Ecap::RegisterAdapterService(const Adaptation::Ecap::ServiceRep::Ada
         if (adapterService->uri() == (*s)->uri()) {
             *s = adapterService;
             debugs(93, 3, "updated eCAP module service: " <<
-                adapterService->uri());
+                   adapterService->uri());
             return;
         }
     }
@@ -148,14 +148,14 @@ Adaptation::Ecap::CheckUnusedAdapterServices(const Adaptation::Services& cfgs)
 {
     typedef std::list<ServiceRep::AdapterService>::const_iterator ASCI;
     for (ASCI loaded = TheServices.begin(); loaded != TheServices.end();
-        ++loaded) {
+            ++loaded) {
         bool found = false;
         for (Services::const_iterator cfged = cfgs.begin();
-             cfged != cfgs.end() && !found; ++cfged) {
+                cfged != cfgs.end() && !found; ++cfged) {
             found = (*cfged)->cfg().uri == (*loaded)->uri().c_str();
         }
         if (!found)
             debugs(93, 1, "Warning: loaded eCAP service has no matching " <<
-                "ecap_service config option: " << (*loaded)->uri());
+                   "ecap_service config option: " << (*loaded)->uri());
     }
 }
index 1a621f8c518ebcd0f762d88b2c391e76f2842169..fe45a6a758aa7f763a126ea7af4283efa259930d 100644 (file)
@@ -456,7 +456,7 @@ const char *Adaptation::Icap::ServiceRep::status() const
 void Adaptation::Icap::ServiceRep::detach()
 {
     debugs(93,3, HERE << "detaching ICAP service: " << cfg().uri <<
-        ' ' << status());
+           ' ' << status());
     isDetached = true;
 }
 
index 162b04d00e38b0d08ca34bb5e3efa672a8748539..47d6a261f6298384afb03a4e41c06c2eeee64feb 100644 (file)
@@ -753,7 +753,7 @@ mainReconfigureFinish(void *)
 #endif
     Adaptation::Config::Finalize(enableAdaptation);
 #endif
-    
+
 #if ICAP_CLIENT
     icapLogOpen();
 #endif