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 2011/09/05 10:13:48 UTC

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

Author: rpluem
Date: Mon Sep  5 08:13:47 2011
New Revision: 1165198

URL: http://svn.apache.org/viewvc?rev=1165198&view=rev
Log:
* Fix compiler warning by removing unused variable

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=1165198&r1=1165197&r2=1165198&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ssl/ssl_engine_config.c (original)
+++ httpd/httpd/trunk/modules/ssl/ssl_engine_config.c Mon Sep  5 08:13:47 2011
@@ -928,14 +928,12 @@ static const char *ssl_cmd_crlcheck_pars
 const char *ssl_cmd_SSLCARevocationCheck(cmd_parms *cmd,
                                          void *dcfg,
                                          const char *arg)
-{   
+{
     SSLSrvConfigRec *sc = mySrvConfig(cmd->server);
 
-    const char *err;
-
     return ssl_cmd_crlcheck_parse(cmd, arg, &sc->server->crl_check_mode);
 }
-        
+
 static const char *ssl_cmd_verify_parse(cmd_parms *parms,
                                         const char *arg,
                                         ssl_verify_t *id)