diff options
author | 2004-07-23 22:39:14 +0000 | |
---|---|---|
committer | 2004-07-23 22:39:14 +0000 | |
commit | 9b1257c9ead711042d588654a3b2bda93028c992 (patch) | |
tree | 9b8c6f11a21d7ae621fa4fcdf008d19e9bd4b70e /net-irc/irssi/files | |
parent | keywording 5.8.4 x86 and sparc (Manifest recommit) (diff) | |
download | gentoo-2-9b1257c9ead711042d588654a3b2bda93028c992.tar.gz gentoo-2-9b1257c9ead711042d588654a3b2bda93028c992.tar.bz2 gentoo-2-9b1257c9ead711042d588654a3b2bda93028c992.zip |
Added backported fix from upstream CVS, which fixes the /exec command bug on 64-bit arches. Closes bug #57785.
Diffstat (limited to 'net-irc/irssi/files')
-rw-r--r-- | net-irc/irssi/files/digest-irssi-0.8.9-r1 | 1 | ||||
-rw-r--r-- | net-irc/irssi/files/irssi-0.8.9-64bit-exec-fix.patch | 12 |
2 files changed, 13 insertions, 0 deletions
diff --git a/net-irc/irssi/files/digest-irssi-0.8.9-r1 b/net-irc/irssi/files/digest-irssi-0.8.9-r1 new file mode 100644 index 000000000000..9d7edc53fea6 --- /dev/null +++ b/net-irc/irssi/files/digest-irssi-0.8.9-r1 @@ -0,0 +1 @@ +MD5 6610ee0e27922f447e40828cf7dee507 irssi-0.8.9.tar.bz2 816465 diff --git a/net-irc/irssi/files/irssi-0.8.9-64bit-exec-fix.patch b/net-irc/irssi/files/irssi-0.8.9-64bit-exec-fix.patch new file mode 100644 index 000000000000..bd8bd0c9e8e9 --- /dev/null +++ b/net-irc/irssi/files/irssi-0.8.9-64bit-exec-fix.patch @@ -0,0 +1,12 @@ +diff -Nur irssi-0.8.9/src/fe-common/core/fe-exec.c irssi-0.8.9-amd64-exec-fix/src/fe-common/core/fe-exec.c +--- irssi-0.8.9/src/fe-common/core/fe-exec.c 2002-06-07 17:45:07.000000000 +0200 ++++ irssi-0.8.9-64bit-exec-fix/src/fe-common/core/fe-exec.c 2004-07-24 00:14:11.965452536 +0200 +@@ -347,7 +347,7 @@ + static void sig_exec_input_reader(PROCESS_REC *rec) + { + char tmpbuf[512], *str; +- unsigned int recvlen; ++ gsize recvlen; + int err, ret; + + g_return_if_fail(rec != NULL); |