[openssh-commits] [openssh] 01/04: upstream: correct log messages; the reap function is used for more
git+noreply at mindrot.org
git+noreply at mindrot.org
Mon May 5 14:59:34 AEST 2025
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
commit 566443b5f5d7bc4c5310313b4e46232760850c7a
Author: djm at openbsd.org <djm at openbsd.org>
AuthorDate: Mon May 5 02:40:30 2025 +0000
upstream: correct log messages; the reap function is used for more
than just the preauth process now
OpenBSD-Commit-ID: 768c5b674bd77802bb197c31dba78559f1174c02
---
monitor_wrap.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/monitor_wrap.c b/monitor_wrap.c
index bd900b2f0..c30a7902d 100644
--- a/monitor_wrap.c
+++ b/monitor_wrap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: monitor_wrap.c,v 1.138 2024/10/22 06:13:00 dtucker Exp $ */
+/* $OpenBSD: monitor_wrap.c,v 1.139 2025/05/05 02:40:30 djm Exp $ */
/*
* Copyright 2002 Niels Provos <provos at citi.umich.edu>
* Copyright 2002 Markus Friedl <markus at openbsd.org>
@@ -126,17 +126,17 @@ mm_reap(void)
}
if (WIFEXITED(status)) {
if (WEXITSTATUS(status) != 0) {
- debug_f("preauth child exited with status %d",
+ debug_f("child exited with status %d",
WEXITSTATUS(status));
cleanup_exit(255);
}
} else if (WIFSIGNALED(status)) {
- error_f("preauth child terminated by signal %d",
+ error_f("child terminated by signal %d",
WTERMSIG(status));
cleanup_exit(signal_is_crash(WTERMSIG(status)) ?
EXIT_CHILD_CRASH : 255);
} else {
- error_f("preauth child terminated abnormally (status=0x%x)",
+ error_f("child terminated abnormally (status=0x%x)",
status);
cleanup_exit(EXIT_CHILD_CRASH);
}
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list