You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rp...@apache.org on 2010/03/23 16:28:57 UTC

svn commit: r926619 - /httpd/httpd/trunk/modules/ssl/ssl_engine_config.c

Author: rpluem
Date: Tue Mar 23 15:28:57 2010
New Revision: 926619

URL: http://svn.apache.org/viewvc?rev=926619&view=rev
Log:
* Silence compiler warning

Modified:
    httpd/httpd/trunk/modules/ssl/ssl_engine_config.c

Modified: httpd/httpd/trunk/modules/ssl/ssl_engine_config.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/ssl/ssl_engine_config.c?rev=926619&r1=926618&r2=926619&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ssl/ssl_engine_config.c (original)
+++ httpd/httpd/trunk/modules/ssl/ssl_engine_config.c Tue Mar 23 15:28:57 2010
@@ -583,7 +583,9 @@ const char *ssl_cmd_SSLEngine(cmd_parms 
 
 const char *ssl_cmd_SSLFIPS(cmd_parms *cmd, void *dcfg, int flag)
 {
+#ifdef HAVE_FIPS
     SSLSrvConfigRec *sc = mySrvConfig(cmd->server);
+#endif
     const char *err;
 
     if ((err = ap_check_cmd_context(cmd, GLOBAL_ONLY))) {