chiark / gitweb /
pam_elogind.c: Remove renames by mask, check_tree.pl can handle this now.
authorSven Eden <yamakuzure@gmx.net>
Fri, 8 Jun 2018 06:30:56 +0000 (08:30 +0200)
committerSven Eden <yamakuzure@gmx.net>
Fri, 8 Jun 2018 14:45:49 +0000 (16:45 +0200)
(cherry picked from commit 6964ec46218d41d699690ed590026249969b2257)

src/login/pam_elogind.c

index b1e678d2b256aa13d20ef653f41adacbe9daf763..dfd352495677c098e35a301f4a81cbe34c6beb6f 100644 (file)
@@ -249,11 +249,7 @@ _public_ PAM_EXTERN int pam_sm_open_session(
                 return PAM_SESSION_ERR;
 
         if (debug)
-#if 0 /// This is pam-elogind, not pam-systemd
-                pam_syslog(handle, LOG_DEBUG, "pam-systemd initializing");
-#else
                 pam_syslog(handle, LOG_DEBUG, "pam-elogind initializing");
-#endif // 0
 
         r = get_user_data(handle, &username, &pw);
         if (r != PAM_SUCCESS) {
@@ -262,17 +258,13 @@ _public_ PAM_EXTERN int pam_sm_open_session(
         }
 
         /* Make sure we don't enter a loop by talking to
-         * systemd-logind when it is actually waiting for the
+         * elogind when it is actually waiting for the
          * background to finish start-up. If the service is
-         * "systemd-user" we simply set XDG_RUNTIME_DIR and
+         * "elogind-user" we simply set XDG_RUNTIME_DIR and
          * leave. */
 
         pam_get_item(handle, PAM_SERVICE, (const void**) &service);
-#if 0 /// Actually it is elogind-user with elogind.
-        if (streq_ptr(service, "systemd-user")) {
-#else
         if (streq_ptr(service, "elogind-user")) {
-#endif // 0
                 _cleanup_free_ char *rt = NULL;
 
                 if (asprintf(&rt, "/run/user/"UID_FMT, pw->pw_uid) < 0)