1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-28 03:25:31 +03:00

load-fragment: properly parse Nice= value

Hello,

     i`ve been using systemd for a while now, and found out that when
using NICE parameter for .service files the varible is not set correctly.
     i`ve found the problem in file *load-fragment.c* function
*config_parse_nice*        variable /*c->nice_set = false;*/  should be
/*c->nice_set = true;*/
     Problem is alsom manifesting on v17 but did not upgrade yet ...
This commit is contained in:
Adrian Spinu 2011-02-02 15:57:52 +02:00 committed by Lennart Poettering
parent 5d909e3ec3
commit 7115593375

View File

@ -306,7 +306,7 @@ static int config_parse_nice(
}
c->nice = priority;
c->nice_set = false;
c->nice_set = true;
return 0;
}