]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
shared/pam-util: fix awkward tense in log message 31515/head
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 27 Feb 2024 17:32:51 +0000 (18:32 +0100)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 27 Feb 2024 17:32:51 +0000 (18:32 +0100)
src/shared/pam-util.c
test/units/end.sh

index e3d92038aa8ddaf2885b37c69dbeaa4b074ad9d9..d626b2817bc9101fd9b2f5ac124545942d2d0502 100644 (file)
@@ -97,7 +97,7 @@ static void pam_bus_data_destroy(pam_handle_t *handle, void *data, int error_sta
             d->bus && bus_origin_changed(d->bus))
                 /* Please adjust test/units/end.sh when updating the log message. */
                 pam_syslog(handle, LOG_DEBUG,
-                           "Attempted to close sd-bus (%s) after fork whose connection is opened before the fork, this should not happen.",
+                           "Warning: cannot close sd-bus connection (%s) after fork when it was opened before the fork.",
                            strna(d->cache_id));
 
         pam_bus_data_free(data);
index 412e0a96a2f84e5840a37989547077ee6bf3dd19..4c6c0afa0e9768369bb75177c330614c4f26f098 100755 (executable)
@@ -6,8 +6,8 @@ set -o pipefail
 
 (! journalctl -q -o short-monotonic --grep "didn't pass validation" >>/failed)
 
-# Here, the redundant '[.]' at the end is for making not the logged self command hit the grep.
-(! journalctl -q -o short-monotonic --grep 'Attempted to close sd-bus (.*) after fork whose connection is opened before the fork, this should not happen[.]' >>/failed)
+# Here, the redundant '[ ]' in the pattern is required in order not to match the logged command itself.
+(! journalctl -q -o short-monotonic --grep 'Warning: cannot close sd-bus connection[ ].*after fork' >>/failed)
 
 systemctl poweroff --no-block
 exit 0