chiark / gitweb /
pam: fix up tty if it is actually a display
authorLennart Poettering <lennart@poettering.net>
Fri, 24 Jun 2011 21:51:49 +0000 (23:51 +0200)
committerLennart Poettering <lennart@poettering.net>
Fri, 24 Jun 2011 21:51:49 +0000 (23:51 +0200)
src/pam-module.c

index eba59f65f25837c64e146e43c1ba86b80f4725a6..1658348e28ec922e5568204d07be9c838bbc46fd 100644 (file)
@@ -382,6 +382,16 @@ _public_ PAM_EXTERN int pam_sm_open_session(
         remote_host = strempty(remote_host);
         seat = strempty(seat);
 
+        if (strchr(tty, ':')) {
+                /* A tty with a colon is usually an X11 display, place
+                 * there to show up in utmp. We rearrange things and
+                 * don't pretend that an X display was a tty */
+
+                if (isempty(display))
+                        display = tty;
+                tty = NULL;
+        }
+
         type = !isempty(display) ? "x11" :
                    !isempty(tty) ? "tty" : "other";