From: Lennart Poettering Date: Wed, 19 May 2010 01:44:37 +0000 (+0200) Subject: service: sysv_chkconfig_order() actually has nothing to do with chkconfig anymore... X-Git-Tag: 0.git+20100605+dfd8ee-1~11^2^2~63 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=56d748b47e289fc0fcdf7925df1580afbc2d220a;p=systemd service: sysv_chkconfig_order() actually has nothing to do with chkconfig anymore, so rename it --- diff --git a/src/service.c b/src/service.c index dbef725c..2515cd30 100644 --- a/src/service.c +++ b/src/service.c @@ -225,7 +225,7 @@ finish: return 1; } -static int sysv_chkconfig_order(Service *s) { +static int sysv_fix_order(Service *s) { Meta *other; int r; @@ -789,7 +789,7 @@ static int service_load(Unit *u) { if ((r = unit_add_default_cgroup(u)) < 0) return r; - if ((r = sysv_chkconfig_order(s)) < 0) + if ((r = sysv_fix_order(s)) < 0) return r; if (s->bus_name) {