From ef3ce8b6745e8eeccedc3ea4c3aa1bf2047b6920 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Tue, 12 Feb 2013 05:57:08 -0800 Subject: [PATCH] openssh-5.9p1-pts.diff =================================================================== --- loginrec.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/loginrec.c b/loginrec.c index 4219b9a..79d1f60 100644 --- a/loginrec.c +++ b/loginrec.c @@ -543,7 +543,7 @@ getlast_entry(struct logininfo *li) * 1. The full filename (including '/dev') * 2. The stripped name (excluding '/dev') * 3. The abbreviated name (e.g. /dev/ttyp00 -> yp00 - * /dev/pts/1 -> ts/1 ) + * /dev/pts/1 -> /1 ) * * Form 3 is used on some systems to identify a .tmp.? entry when * attempting to remove it. Typically both addition and removal is @@ -604,6 +604,10 @@ line_abbrevname(char *dst, const char *src, int dstsize) if (strncmp(src, "tty", 3) == 0) src += 3; #endif + if (strncmp(src, "pts/", 4) == 0) { + src += 3; + if (strlen(src) > 4) src++; + } len = strlen(src); -- 2.7.4