summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2006-12-05 01:15:17 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2006-12-05 01:15:17 +0000
commitad44d9ed74a50782445c0fc95a0e6a7375f8f180 (patch)
treed7862cce9dd53af5be74db9068b8469cc664cdcc /net-misc/putty/files
parentclean old files (diff)
downloadhistorical-ad44d9ed74a50782445c0fc95a0e6a7375f8f180.tar.gz
historical-ad44d9ed74a50782445c0fc95a0e6a7375f8f180.tar.bz2
historical-ad44d9ed74a50782445c0fc95a0e6a7375f8f180.zip
clean old files
Package-Manager: portage-2.1.1-r2
Diffstat (limited to 'net-misc/putty/files')
-rw-r--r--net-misc/putty/files/digest-putty-0.571
-rw-r--r--net-misc/putty/files/putty-ut_time.patch21
2 files changed, 0 insertions, 22 deletions
diff --git a/net-misc/putty/files/digest-putty-0.57 b/net-misc/putty/files/digest-putty-0.57
deleted file mode 100644
index 098b310a35df..000000000000
--- a/net-misc/putty/files/digest-putty-0.57
+++ /dev/null
@@ -1 +0,0 @@
-MD5 0fc816093980246f6400693fe6146280 putty-0.57.tar.gz 1319513
diff --git a/net-misc/putty/files/putty-ut_time.patch b/net-misc/putty/files/putty-ut_time.patch
deleted file mode 100644
index 5d5d8b026de5..000000000000
--- a/net-misc/putty/files/putty-ut_time.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -ur putty.old/unix/pty.c putty/unix/pty.c
---- putty.old/unix/pty.c 2003-05-11 07:28:53.000000000 -0500
-+++ putty/unix/pty.c 2004-05-07 10:03:44.174148128 -0500
-@@ -106,7 +106,7 @@
- strncpy(utmp_entry.ut_id, ttyname+8, lenof(utmp_entry.ut_id));
- strncpy(utmp_entry.ut_user, pw->pw_name, lenof(utmp_entry.ut_user));
- strncpy(utmp_entry.ut_host, location, lenof(utmp_entry.ut_host));
-- time(&utmp_entry.ut_time);
-+ utmp_entry.ut_time = time(NULL);
-
- #if defined HAVE_PUTUTLINE
- utmpname(UTMP_FILE);
-@@ -147,7 +147,7 @@
-
- utmp_entry.ut_type = DEAD_PROCESS;
- memset(utmp_entry.ut_user, 0, lenof(utmp_entry.ut_user));
-- time(&utmp_entry.ut_time);
-+ utmp_entry.ut_time = time(NULL);
-
- if ((wtmp = fopen(WTMP_FILE, "a")) != NULL) {
- fwrite(&utmp_entry, 1, sizeof(utmp_entry), wtmp);