src/collectd.c: Fix initialization of the "timeout_g" variable.
authorFlorian Forster <octo@leeloo.lan.home.verplant.org>
Sun, 25 Apr 2010 12:46:44 +0000 (14:46 +0200)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Sun, 25 Apr 2010 12:46:44 +0000 (14:46 +0200)
The default value is "2", not "10".

src/collectd.c

index 9a4ba08..277d3b0 100644 (file)
@@ -151,9 +151,9 @@ static int init_global_variables (void)
 
        str = global_option_get ("Timeout");
        if (str == NULL)
-               str = "10";
+               str = "2";
        timeout_g = atoi (str);
-       if (timeout_g <= 0)
+       if (timeout_g <= 1)
        {
                fprintf (stderr, "Cannot set the timeout to a correct value.\n"
                                "Please check your settings.\n");