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/09/17 18:34:19 UTC

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

Author: trawick
Date: Thu Sep 17 16:34:18 2009
New Revision: 816268

URL: http://svn.apache.org/viewvc?rev=816268&view=rev
Log:
fix typo in parameter value comparison from r815971

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=816268&r1=816267&r2=816268&view=diff
==============================================================================
--- httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.c (original)
+++ httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.c Thu Sep 17 16:34:18 2009
@@ -488,7 +488,7 @@
     fcgid_server_conf *config =
         ap_get_module_config(s->module_config, &fcgid_module);
     config->ipc_comm_timeout = atol(arg);
-    if (config->ipc_comm_timeout < 0) {
+    if (config->ipc_comm_timeout <= 0) {
         return "IPCCommTimeout must be greater than 0";
     }
     config->ipc_comm_timeout_set = 1;