diff options
author | mezz <mezz@FreeBSD.org> | 2007-06-07 10:21:42 +0800 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2007-06-07 10:21:42 +0800 |
commit | 7b4b4e1f4072c84f8c5481e255fa76d81c180fdb (patch) | |
tree | 2f309e7a3d8526ab516956035d38dfbb7a53ab0f /irc/xchat/files | |
parent | d763bf2c01e49c2d7255bd3763ab49432e869768 (diff) | |
download | freebsd-ports-gnome-7b4b4e1f4072c84f8c5481e255fa76d81c180fdb.tar.gz freebsd-ports-gnome-7b4b4e1f4072c84f8c5481e255fa76d81c180fdb.tar.zst freebsd-ports-gnome-7b4b4e1f4072c84f8c5481e255fa76d81c180fdb.zip |
Fix defunc processes created by opening tray balloons, bump the PORTREVISION.
Obtained from: http://xchat.org/files/source/2.8/patches/
Diffstat (limited to 'irc/xchat/files')
-rw-r--r-- | irc/xchat/files/patch-xc282-fixtrayzombies | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/irc/xchat/files/patch-xc282-fixtrayzombies b/irc/xchat/files/patch-xc282-fixtrayzombies new file mode 100644 index 000000000000..83e2f8cce416 --- /dev/null +++ b/irc/xchat/files/patch-xc282-fixtrayzombies @@ -0,0 +1,14 @@ +# +# Fix defunc processes created by opening tray balloons +# +--- src/fe-gtk/plugin-tray.c 20 May 2007 11:08:03 -0000 1.21 ++++ src/fe-gtk/plugin-tray.c 31 May 2007 13:12:19 -0000 +@@ -148,7 +148,7 @@ + argv[5] = title; + argv[6] = text = strip_color (text, -1, STRIP_ALL); + argv[7] = NULL; +- util_execv (argv); ++ xchat_execv (argv); + g_free ((char *)path); + free ((char *)text); + } |