Mailing List Archive

svn commit: r170888 - /spamassassin/trunk/spamd/spamd.raw
Author: jm
Date: Thu May 19 00:26:16 2005
New Revision: 170888

URL: http://svn.apache.org/viewcvs?rev=170888&view=rev
Log:
bug 4336: --timeout-child option was nonfunctional due to typo

Modified:
spamassassin/trunk/spamd/spamd.raw

Modified: spamassassin/trunk/spamd/spamd.raw
URL: http://svn.apache.org/viewcvs/spamassassin/trunk/spamd/spamd.raw?rev=170888&r1=170887&r2=170888&view=diff
==============================================================================
--- spamassassin/trunk/spamd/spamd.raw (original)
+++ spamassassin/trunk/spamd/spamd.raw Thu May 19 00:26:16 2005
@@ -447,8 +447,8 @@
$timeout_tcp = undef if ($timeout_tcp < 1);
}

-if (defined $opt{'timeout_child'}) {
- $timeout_child = $opt{'timeout_child'};
+if (defined $opt{'timeout-child'}) {
+ $timeout_child = $opt{'timeout-child'};
$timeout_child = undef if ($timeout_child < 1);
}