From: Automatic source maintenance Date: Wed, 4 Apr 2012 00:21:57 +0000 (-0600) Subject: SourceFormat Enforcement X-Git-Tag: BumpSslServerFirst.take08~7^2~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=42628300f1102cfdb2fad2678f726f6e2c86492a;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/src/comm/ConnOpener.cc b/src/comm/ConnOpener.cc index 9d8e950173..0ed365198a 100644 --- a/src/comm/ConnOpener.cc +++ b/src/comm/ConnOpener.cc @@ -322,11 +322,11 @@ Comm::ConnOpener::InProgressConnectRetry(int fd, void *data) Pointer *ptr = static_cast(data); assert(ptr); if (ConnOpener *cs = ptr->valid()) { - // Ew. we are now outside the all AsyncJob protections. - // get back inside by scheduling another call... - typedef NullaryMemFunT Dialer; - AsyncCall::Pointer call = JobCallback(5, 4, Dialer, cs, Comm::ConnOpener::connect); - ScheduleCallHere(call); + // Ew. we are now outside the all AsyncJob protections. + // get back inside by scheduling another call... + typedef NullaryMemFunT Dialer; + AsyncCall::Pointer call = JobCallback(5, 4, Dialer, cs, Comm::ConnOpener::connect); + ScheduleCallHere(call); } delete ptr; } @@ -340,11 +340,11 @@ Comm::ConnOpener::DelayedConnectRetry(void *data) Pointer *ptr = static_cast(data); assert(ptr); if (ConnOpener *cs = ptr->valid()) { - // Ew. we are now outside the all AsyncJob protections. - // get back inside by scheduling another call... - typedef NullaryMemFunT Dialer; - AsyncCall::Pointer call = JobCallback(5, 4, Dialer, cs, Comm::ConnOpener::connect); - ScheduleCallHere(call); + // Ew. we are now outside the all AsyncJob protections. + // get back inside by scheduling another call... + typedef NullaryMemFunT Dialer; + AsyncCall::Pointer call = JobCallback(5, 4, Dialer, cs, Comm::ConnOpener::connect); + ScheduleCallHere(call); } delete ptr; }