1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

The buffers need to be larger for some translations to fix the crash. Bump the

PORTREVISION.

PR:		ports/118659
Reported by:	Kyryll A Mirnenko <mirya@zoc.com.ua>
Obtained from:	Its CVS.
This commit is contained in:
Jeremy Messenger 2008-03-24 04:52:31 +00:00
parent 01dd317318
commit 6261706d40
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=209672
2 changed files with 23 additions and 1 deletions

View File

@ -8,7 +8,7 @@
PORTNAME= xchat
PORTVERSION= 2.8.4
PORTREVISION= 4
PORTREVISION= 5
CATEGORIES= irc gnome ipv6
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
http://xchat.org/files/source/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}/

View File

@ -0,0 +1,22 @@
--- src/fe-gtk/fe-gtk.c.orig 2008-03-07 13:04:07.000000000 -0600
+++ src/fe-gtk/fe-gtk.c 2008-03-07 13:05:24.000000000 -0600
@@ -660,7 +660,7 @@
session *sess;
gdouble per;
char lagtext[64];
- char lagtip[64];
+ char lagtip[128];
unsigned long nowtim;
if (lag == -1)
@@ -716,8 +716,8 @@
GSList *list = sess_list;
struct session *sess;
float per;
- char tbuf[64];
- char tip[64];
+ char tbuf[96];
+ char tip[160];
per = (float) serv->sendq_len / 1024.0;
if (per > 1.0)