View | Details | Raw Unified | Return to bug 3250 | Differences between
and this patch

Collapse All | Expand All

(-)file_not_specified_in_diff (-2 / +2 lines)
Line  Link Here
0
-- a/readconf.c
0
++ b/readconf.c
Lines 975-981 parse_time: Link Here
975
		}
975
		}
976
		if (strcmp(arg, "none") == 0)
976
		if (strcmp(arg, "none") == 0)
977
			value = -1;
977
			value = -1;
978
		else if ((value = convtime(arg)) == -1) {
978
		else if ((value = convtime(arg)) <= -1) {
979
			error("%s line %d: invalid time value.",
979
			error("%s line %d: invalid time value.",
980
			    filename, linenum);
980
			    filename, linenum);
981
			return -1;
981
			return -1;

Return to bug 3250