mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-12-25 23:21:33 +03:00
tree-wide: drop "f" from sd_notify() calls with a static string
If we don't need to do any formatting, let's optimize things a bit.
This commit is contained in:
parent
d7737416f5
commit
d4341b76d0
@ -3465,9 +3465,9 @@ static void user_manager_send_ready(Manager *m) {
|
||||
if (!MANAGER_IS_USER(m) || m->ready_sent)
|
||||
return;
|
||||
|
||||
r = sd_notifyf(false,
|
||||
"READY=1\n"
|
||||
"STATUS=Reached " SPECIAL_BASIC_TARGET ".");
|
||||
r = sd_notify(false,
|
||||
"READY=1\n"
|
||||
"STATUS=Reached " SPECIAL_BASIC_TARGET ".");
|
||||
if (r < 0)
|
||||
log_warning_errno(r, "Failed to send readiness notification, ignoring: %m");
|
||||
|
||||
|
@ -4245,7 +4245,7 @@ static int nspawn_dispatch_notify_fd(sd_event_source *source, int fd, uint32_t r
|
||||
return log_oom();
|
||||
|
||||
if (strv_find(tags, "READY=1")) {
|
||||
r = sd_notifyf(false, "READY=1\n");
|
||||
r = sd_notify(false, "READY=1\n");
|
||||
if (r < 0)
|
||||
log_warning_errno(r, "Failed to send readiness notification, ignoring: %m");
|
||||
}
|
||||
|
@ -915,7 +915,7 @@ void manager_disconnect(Manager *m) {
|
||||
|
||||
m->event_timeout = sd_event_source_unref(m->event_timeout);
|
||||
|
||||
sd_notifyf(false, "STATUS=Idle.");
|
||||
sd_notify(false, "STATUS=Idle.");
|
||||
}
|
||||
|
||||
void manager_flush_server_names(Manager *m, ServerType t) {
|
||||
|
Loading…
Reference in New Issue
Block a user