]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Validate server certificates without bumping: fix compile error
authorChristos Tsantilas <chtsanti@users.sourceforge.net>
Tue, 7 Oct 2014 17:26:33 +0000 (20:26 +0300)
committerChristos Tsantilas <chtsanti@users.sourceforge.net>
Tue, 7 Oct 2014 17:26:33 +0000 (20:26 +0300)
Fix error: return-statement with a value, in function returning 'void'

src/ssl/PeerConnector.cc

index 607d881a978df5d9524556e1b1ac3fd19f8c886f..1ca6f853ec3db6a6629e79f3bc97f207808fa1d5 100644 (file)
@@ -363,7 +363,6 @@ Ssl::PeerConnector::checkForPeekAndSpliceDone(Ssl::BumpMode const action)
         // and if done, switch to tunnel mode
         if (sslFinalized())
             switchToTunnel(request.getRaw(), clientConn, serverConn);
-        return false;
     }
 }