fixed bug in reading size/time limits without style, in the form 'size=number', 'time=number'

This commit is contained in:
Pierangelo Masarati 2002-08-23 08:50:34 +00:00
parent a038ef68e6
commit 7b4b4b34c4

View file

@ -436,6 +436,7 @@ parse_limit(
}
} else if ( arg[0] == '=' ) {
arg++;
limit->lms_t_soft = atoi( arg );
limit->lms_t_hard = 0;
@ -487,6 +488,7 @@ parse_limit(
}
} else if ( arg[0] == '=' ) {
arg++;
limit->lms_s_soft = atoi( arg );
limit->lms_s_hard = 0;