diff options
author | Michael Nottebrock <lofi@FreeBSD.org> | 2004-02-05 01:23:10 +0000 |
---|---|---|
committer | Michael Nottebrock <lofi@FreeBSD.org> | 2004-02-05 01:23:10 +0000 |
commit | 38a92d46fecb74d6b431e72fb051d4852ae09192 (patch) | |
tree | 9175166a8d864537bf06b6192f8990ba59164986 /x11/kdebase4-runtime/files/patch-konsole-konsole-TEPty.cpp | |
parent | baa573cc0f3c67d02f961def5da5d4b3fccc5e54 (diff) | |
download | ports-38a92d46fecb74d6b431e72fb051d4852ae09192.tar.gz ports-38a92d46fecb74d6b431e72fb051d4852ae09192.zip |
Notes
Diffstat (limited to 'x11/kdebase4-runtime/files/patch-konsole-konsole-TEPty.cpp')
-rw-r--r-- | x11/kdebase4-runtime/files/patch-konsole-konsole-TEPty.cpp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/x11/kdebase4-runtime/files/patch-konsole-konsole-TEPty.cpp b/x11/kdebase4-runtime/files/patch-konsole-konsole-TEPty.cpp deleted file mode 100644 index 949bc5bc36ce..000000000000 --- a/x11/kdebase4-runtime/files/patch-konsole-konsole-TEPty.cpp +++ /dev/null @@ -1,18 +0,0 @@ ---- konsole/konsole/TEPty.cpp.orig Mon Sep 29 11:22:07 2003 -+++ konsole/konsole/TEPty.cpp Mon Sep 29 11:22:12 2003 -@@ -624,7 +624,14 @@ - if (strncmp(str_ptr, "/dev/", 5) == 0) - str_ptr += 5; - strncpy(l_struct.ut_line, str_ptr, UT_LINESIZE); -- time(&l_struct.ut_time); -+ -+ // Handle 64-bit time_t properly, where it may be larger -+ // than the integral type of ut_time. -+ { -+ time_t ut_time_temp; -+ time(&ut_time_temp); -+ l_struct.ut_time=ut_time_temp; -+ } - - login(&l_struct); - #endif |