From c259af96192cbf4ceba01c49b08d054bb2a91486 Mon Sep 17 00:00:00 2001 From: Christos Tsantilas Date: Fri, 17 Jun 2011 16:56:33 +0300 Subject: [PATCH] "Configurable SSL error details messages" patch fix Use "#ifdef USE_SSL" for ssl related stuff to allow compile when SSL is disabled --- src/errorpage.cc | 4 ++++ 1 file changed, 4 insertions(+) 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 -- 2.47.3