--- bogoconfig.c 24 Sep 2004 00:40:36 -0000 1.191 +++ bogoconfig.c 24 Sep 2004 00:44:40 -0000 @@ -645,7 +645,9 @@ case 'o': if (pass != PASS_1_CLI) { + printf("sc %6.4f, hc %6.4f\n", spam_cutoff, ham_cutoff); comma_parse(option, val, &spam_cutoff, &ham_cutoff, NULL); + printf("sc %6.4f, hc %6.4f\n", spam_cutoff, ham_cutoff); if (DEBUG_CONFIG(1)) printf("sc %6.4f, hc %6.4f\n", spam_cutoff, ham_cutoff); } --- xatof.c 31 Jan 2004 04:53:30 -0000 1.9 +++ xatof.c 24 Sep 2004 00:44:40 -0000 @@ -8,6 +8,7 @@ #include "xatox.h" #include +#include #include #include @@ -16,6 +17,7 @@ char *end; errno = 0; val = strtod(in, &end); + printf("val %6.4f\n", val); if (end == in /* input string empty or does not start with sign/digit */ || end < in + strlen(in) /* junk at end of in */ || errno == EINVAL /* SUSv3: "no conversion could be performed" */