summaryrefslogtreecommitdiff
path: root/src/quotacheck
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2017-12-28 00:51:19 +0100
committerLennart Poettering <lennart@poettering.net>2018-01-04 13:27:27 +0100
commit7d4904fe7a14852c1469a55ec1dfdf747d829cb1 (patch)
tree0436ef0382c15c9e020ec110dde9d79c44342517 /src/quotacheck
parentb6e1fff13dbfc1623de41b78bc525f410fb59b91 (diff)
downloadsystemd-7d4904fe7a14852c1469a55ec1dfdf747d829cb1.tar.gz
process-util: rework wait_for_terminate_and_warn() to take a flags parameter
This renames wait_for_terminate_and_warn() to wait_for_terminate_and_check(), and adds a flags parameter, that controls how much to log: there's one flag that means we log about abnormal stuff, and another one that controls whether we log about non-zero exit codes. Finally, there's a shortcut flag value for logging in both cases, as that's what we usually use. All callers are accordingly updated. At three occasions duplicate logging is removed, i.e. where the old function was called but logged in the caller, too.
Diffstat (limited to 'src/quotacheck')
-rw-r--r--src/quotacheck/quotacheck.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quotacheck/quotacheck.c b/src/quotacheck/quotacheck.c
index 2773e4b581..c40c7d5d07 100644
--- a/src/quotacheck/quotacheck.c
+++ b/src/quotacheck/quotacheck.c
@@ -117,7 +117,7 @@ int main(int argc, char *argv[]) {
_exit(EXIT_FAILURE); /* Operational error */
}
- r = wait_for_terminate_and_warn("quotacheck", pid, true);
+ r = wait_for_terminate_and_check("quotacheck", pid, WAIT_LOG);
finish:
return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;