From: Yu Watanabe Date: Fri, 21 Nov 2025 00:31:36 +0000 (+0900) Subject: pam-systemd-loadkey: append full stop X-Git-Tag: v259-rc2~46^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=447eb0a00ccdeb448ccd98f35239aae1e0a2dc48;p=thirdparty%2Fsystemd.git pam-systemd-loadkey: append full stop --- diff --git a/src/login/pam_systemd_loadkey.c b/src/login/pam_systemd_loadkey.c index 2c17eae46fc..62e3881a2ca 100644 --- a/src/login/pam_systemd_loadkey.c +++ b/src/login/pam_systemd_loadkey.c @@ -44,7 +44,7 @@ _public_ PAM_EXTERN int pam_sm_authenticate( pam_syslog(handle, LOG_WARNING, "Unknown parameter '%s', ignoring.", argv[i]); } - pam_debug_syslog(handle, debug, "pam-systemd-loadkey initializing"); + pam_debug_syslog(handle, debug, "pam-systemd-loadkey: initializing..."); /* Retrieve the key. */ @@ -76,10 +76,10 @@ _public_ PAM_EXTERN int pam_sm_authenticate( size_t passwords_len = strv_length(passwords); if (passwords_len == 0) { - pam_debug_syslog(handle, debug, "Key is empty"); + pam_debug_syslog(handle, debug, "Key is empty."); return PAM_AUTHINFO_UNAVAIL; } else if (passwords_len > 1) - pam_debug_syslog(handle, debug, "Multiple passwords found in the key. Using the last one"); + pam_debug_syslog(handle, debug, "Multiple passwords found in the key. Using the last one."); r = pam_set_item(handle, PAM_AUTHTOK, passwords[passwords_len - 1]); if (r != PAM_SUCCESS)