mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 00:51:24 +03:00
pam_systemd: reword message about not creating a session
The message is changed from Cannot create session: Already running in a session... to Not creating session: Already running in a session... This is more neutral and avoids suggesting a problem. "Will not create session: ..." was suggested, but it sounds like the action would have yet to be performed. I think Using present continuous is better. Fixes #10822 (for good now, I hope).
This commit is contained in:
parent
b26c904113
commit
c7e93c4d15
@ -595,7 +595,7 @@ _public_ PAM_EXTERN int pam_sm_open_session(
|
||||
if (r < 0) {
|
||||
if (sd_bus_error_has_name(&error, BUS_ERROR_SESSION_BUSY)) {
|
||||
if (debug)
|
||||
pam_syslog(handle, LOG_DEBUG, "Cannot create session: %s", bus_error_message(&error, r));
|
||||
pam_syslog(handle, LOG_DEBUG, "Not creating session: %s", bus_error_message(&error, r));
|
||||
return PAM_SUCCESS;
|
||||
} else {
|
||||
pam_syslog(handle, LOG_ERR, "Failed to create session: %s", bus_error_message(&error, r));
|
||||
|
Loading…
Reference in New Issue
Block a user