mirror of
https://github.com/systemd/systemd.git
synced 2024-12-27 07:22:31 +03:00
pam_systemd: reduce append_session_cg_weight() indentation level a bit by moving to early exit
This commit is contained in:
parent
f7b8b5c4fb
commit
36a4dbae4b
@ -252,7 +252,9 @@ static int append_session_cg_weight(pam_handle_t *handle, sd_bus_message *m, con
|
|||||||
uint64_t val;
|
uint64_t val;
|
||||||
int r;
|
int r;
|
||||||
|
|
||||||
if (!isempty(limit)) {
|
if (isempty(limit))
|
||||||
|
return 0;
|
||||||
|
|
||||||
r = cg_weight_parse(limit, &val);
|
r = cg_weight_parse(limit, &val);
|
||||||
if (r >= 0) {
|
if (r >= 0) {
|
||||||
r = sd_bus_message_append(m, "(sv)", field, "t", val);
|
r = sd_bus_message_append(m, "(sv)", field, "t", val);
|
||||||
@ -264,7 +266,6 @@ static int append_session_cg_weight(pam_handle_t *handle, sd_bus_message *m, con
|
|||||||
pam_syslog(handle, LOG_WARNING, "Failed to parse systemd.cpu_weight: %s, ignoring.", limit);
|
pam_syslog(handle, LOG_WARNING, "Failed to parse systemd.cpu_weight: %s, ignoring.", limit);
|
||||||
else
|
else
|
||||||
pam_syslog(handle, LOG_WARNING, "Failed to parse systemd.io_weight: %s, ignoring.", limit);
|
pam_syslog(handle, LOG_WARNING, "Failed to parse systemd.io_weight: %s, ignoring.", limit);
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user