diff options
author | Sven Wegener <swegener@gentoo.org> | 2005-05-14 22:08:38 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2005-05-14 22:08:38 +0000 |
commit | 75c2f9918e98bc60d5c56b4164b601e1723a7b2a (patch) | |
tree | e91fefdffe134e7ef6f1272a70cff69934a24314 /app-misc/screen/files | |
parent | removing old files (diff) | |
download | historical-75c2f9918e98bc60d5c56b4164b601e1723a7b2a.tar.gz historical-75c2f9918e98bc60d5c56b4164b601e1723a7b2a.tar.bz2 historical-75c2f9918e98bc60d5c56b4164b601e1723a7b2a.zip |
Revision bump to include several fixes and feature enhancements. Install the correct pam.d file for bug #92370. Enable the built-in telnet client, bug #82773. Fix time bug for 64bit systems, bug #71207. Also enable the 256 colors support, requested via email by Emanuele Giaquinta.
Package-Manager: portage-2.0.51.21-r1
Diffstat (limited to 'app-misc/screen/files')
-rw-r--r-- | app-misc/screen/files/4.0.2-64bit-time.patch | 11 | ||||
-rw-r--r-- | app-misc/screen/files/digest-screen-4.0.2-r3 (renamed from app-misc/screen/files/digest-screen-4.0.2-r2) | 0 | ||||
-rw-r--r-- | app-misc/screen/files/screen.pam | 4 |
3 files changed, 15 insertions, 0 deletions
diff --git a/app-misc/screen/files/4.0.2-64bit-time.patch b/app-misc/screen/files/4.0.2-64bit-time.patch new file mode 100644 index 000000000000..645b37f9b098 --- /dev/null +++ b/app-misc/screen/files/4.0.2-64bit-time.patch @@ -0,0 +1,11 @@ +--- utmp.c.orig 2004-11-14 23:15:28.000000000 +0100 ++++ utmp.c 2004-11-14 23:15:39.000000000 +0100 +@@ -618,7 +618,7 @@ + #endif /* sgi */ + strncpy(u->ut_line, line, sizeof(u->ut_line)); + u->ut_pid = pid; +- (void)time((time_t *)&u->ut_time); ++ u->ut_time = time(NULL); + } + + static slot_t diff --git a/app-misc/screen/files/digest-screen-4.0.2-r2 b/app-misc/screen/files/digest-screen-4.0.2-r3 index 7891ec0c1518..7891ec0c1518 100644 --- a/app-misc/screen/files/digest-screen-4.0.2-r2 +++ b/app-misc/screen/files/digest-screen-4.0.2-r3 diff --git a/app-misc/screen/files/screen.pam b/app-misc/screen/files/screen.pam new file mode 100644 index 000000000000..2b20dea9586c --- /dev/null +++ b/app-misc/screen/files/screen.pam @@ -0,0 +1,4 @@ +# +# This is the PAM configuration file for screen(1) +# +auth include system-auth |