diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2003-09-29 09:39:38 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2003-09-29 09:39:38 +0000 |
commit | f6ed807045fc1b69b31d6a45c58dbcc89e25b854 (patch) | |
tree | 5bc25a3af22997c696c07bed20b88025efac4246 /x11/kdebase3 | |
parent | 70976bc0043de8eeef2687d8d28c81bc31fd06c5 (diff) | |
download | ports-f6ed807045fc1b69b31d6a45c58dbcc89e25b854.tar.gz ports-f6ed807045fc1b69b31d6a45c58dbcc89e25b854.zip |
Notes
Diffstat (limited to 'x11/kdebase3')
-rw-r--r-- | x11/kdebase3/files/patch-konsole-konsole-TEPty.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/x11/kdebase3/files/patch-konsole-konsole-TEPty.cpp b/x11/kdebase3/files/patch-konsole-konsole-TEPty.cpp new file mode 100644 index 000000000000..949bc5bc36ce --- /dev/null +++ b/x11/kdebase3/files/patch-konsole-konsole-TEPty.cpp @@ -0,0 +1,18 @@ +--- 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 |