Skip to content
Snippets Groups Projects
Commit 7b4b4b34 authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

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

parent a038ef68
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment