1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-06 08:26:52 +03:00

service: use uppercase SYSV prefix to make it easier to recognize

This commit is contained in:
Lennart Poettering 2011-03-08 18:51:20 +01:00
parent 85211309f0
commit e527618da5

View File

@ -835,7 +835,7 @@ static int service_load_sysv_path(Service *s, const char *path) {
if (description) { if (description) {
char *d; char *d;
if (!(d = strappend(s->sysv_has_lsb ? "LSB: " : "SysV: ", description))) { if (!(d = strappend(s->sysv_has_lsb ? "LSB: " : "SYSV: ", description))) {
r = -ENOMEM; r = -ENOMEM;
goto finish; goto finish;
} }