aboutsummaryrefslogtreecommitdiffstats
path: root/x11
diff options
context:
space:
mode:
authorthierry <thierry@FreeBSD.org>2012-01-03 04:04:23 +0800
committerthierry <thierry@FreeBSD.org>2012-01-03 04:04:23 +0800
commitfc3f0087cd6802b749d166646af70eb87d7c794c (patch)
tree3548386cb1450b3420f3de0a7987bcb6427ef920 /x11
parent0d73c407016f55427e87aa516eefc57a4e51682c (diff)
downloadfreebsd-ports-gnome-fc3f0087cd6802b749d166646af70eb87d7c794c.tar.gz
freebsd-ports-gnome-fc3f0087cd6802b749d166646af70eb87d7c794c.tar.zst
freebsd-ports-gnome-fc3f0087cd6802b749d166646af70eb87d7c794c.zip
Remove an unnecessaty patch.
Submitted by: Guido Falsi <mad (at) madpilot.net>
Diffstat (limited to 'x11')
-rw-r--r--x11/rxvt-unicode/files/patch-libptytty-src-logging.C12
1 files changed, 0 insertions, 12 deletions
diff --git a/x11/rxvt-unicode/files/patch-libptytty-src-logging.C b/x11/rxvt-unicode/files/patch-libptytty-src-logging.C
deleted file mode 100644
index dd856dbf2649..000000000000
--- a/x11/rxvt-unicode/files/patch-libptytty-src-logging.C
+++ /dev/null
@@ -1,12 +0,0 @@
---- libptytty/src/logging.C.orig 2011-12-03 09:58:20.000000000 +0100
-+++ libptytty/src/logging.C 2011-12-22 21:20:55.000000000 +0100
-@@ -264,7 +264,8 @@
- // posix says that ut_line is not meaningful for DEAD_PROCESS
- // records, but most implementations of last use ut_line to
- // associate records in wtmp file
-- strncpy (utx->ut_line, line, sizeof (utx->ut_line));
-+ if(line)
-+ strncpy (utx->ut_line, line, sizeof (utx->ut_line));
- fill_id (utx->ut_id, line, sizeof (utx->ut_id));
- utx->ut_pid = pid;
- utx->ut_type = login ? USER_PROCESS : DEAD_PROCESS;