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

Collapse All | Expand All

(-)a/servconf.c (-3 / +2 lines)
Lines 934-940 process_server_config_line(ServerOptions *options, char *line, Link Here
934
		if ((value = convtime(arg)) == -1)
934
		if ((value = convtime(arg)) == -1)
935
			fatal("%s line %d: invalid time value.",
935
			fatal("%s line %d: invalid time value.",
936
			    filename, linenum);
936
			    filename, linenum);
937
		if (*intptr == -1)
937
		if (*activep && *intptr == -1)
938
			*intptr = value;
938
			*intptr = value;
939
		break;
939
		break;
940
940
Lines 1497-1503 process_server_config_line(ServerOptions *options, char *line, Link Here
1497
		if (value == -1)
1497
		if (value == -1)
1498
			fatal("%s line %d: Bad yes/point-to-point/ethernet/"
1498
			fatal("%s line %d: Bad yes/point-to-point/ethernet/"
1499
			    "no argument: %s", filename, linenum, arg);
1499
			    "no argument: %s", filename, linenum, arg);
1500
		if (*intptr == -1)
1500
		if (*activep && *intptr == -1)
1501
			*intptr = value;
1501
			*intptr = value;
1502
		break;
1502
		break;
1503
1503
1504
- 

Return to bug 2272