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
1 changed files with 1 additions and 1 deletions

View File

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