Compare commits
2 Commits
84e29b06b1
...
652620b468
Author | SHA1 | Date |
---|---|---|
Lennart Poettering | 652620b468 | |
Lennart Poettering | c6c73d561a |
|
@ -732,9 +732,13 @@ static int plymouth_send_text(const char *text) {
|
||||||
assert(text);
|
assert(text);
|
||||||
|
|
||||||
c = asprintf(&plymouth_message,
|
c = asprintf(&plymouth_message,
|
||||||
|
"r%c" /* reactivate */
|
||||||
"M\x02%c%s%c"
|
"M\x02%c%s%c"
|
||||||
"A%c", /* pause spinner */
|
"A%c" /* pause spinner */
|
||||||
|
"D%c", /* deactivate */
|
||||||
|
'\x00',
|
||||||
(int) strlen(text) + 1, text, '\x00',
|
(int) strlen(text) + 1, text, '\x00',
|
||||||
|
'\x00',
|
||||||
'\x00');
|
'\x00');
|
||||||
if (c < 0)
|
if (c < 0)
|
||||||
return log_oom();
|
return log_oom();
|
||||||
|
|
Loading…
Reference in New Issue