You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2009/10/05 16:23:43 UTC

svn commit: r821806 - /httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.c

Author: trawick
Date: Mon Oct  5 14:23:43 2009
New Revision: 821806

URL: http://svn.apache.org/viewvc?rev=821806&view=rev
Log:
fix double semicolon after declaration

Modified:
    httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.c

Modified: httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.c
URL: http://svn.apache.org/viewvc/httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.c?rev=821806&r1=821805&r2=821806&view=diff
==============================================================================
--- httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.c (original)
+++ httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.c Mon Oct  5 14:23:43 2009
@@ -542,7 +542,7 @@
                                  const char *name, const char *value)
 {
     fcgid_server_conf *config =
-        ap_get_module_config(cmd->server->module_config, &fcgid_module);;
+        ap_get_module_config(cmd->server->module_config, &fcgid_module);
     if (config->default_init_env == NULL)
         config->default_init_env = apr_table_make(cmd->pool, 20);
 #if defined(WIN32) || defined(OS2) || defined(NETWARE)