From: Christos Tsantilas Date: Fri, 17 Jun 2011 13:56:33 +0000 (+0300) Subject: "Configurable SSL error details messages" patch fix X-Git-Tag: take08~55^2~126 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c259af96192cbf4ceba01c49b08d054bb2a91486;p=thirdparty%2Fsquid.git "Configurable SSL error details messages" patch fix Use "#ifdef USE_SSL" for ssl related stuff to allow compile when SSL is disabled --- diff --git a/src/errorpage.cc b/src/errorpage.cc index 1f380cedff..7aa71c2aef 100644 --- a/src/errorpage.cc +++ b/src/errorpage.cc @@ -220,7 +220,9 @@ errorInitialize(void) error_stylesheet.Printf("%s",tmpl.text()); } +#if USE_SSL Ssl::errorDetailInitialize(); +#endif } void @@ -240,7 +242,9 @@ errorClean(void) error_page_count = 0; +#if USE_SSL Ssl::errorDetailClean(); +#endif } /// \ingroup ErrorPageInternal