diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-06-09 06:55:48 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-06-09 06:55:48 +0000 |
commit | 72ea1de3cc9db1fc0985de1b09d734ca85d10ab8 (patch) | |
tree | 97c90f43fd45707f71c13bd24ffe2b63a56c5ac1 /net/gaim | |
parent | 86c01e98532b6e8d9f89cae3ab7b49bade5a84cd (diff) |
Notes
Diffstat (limited to 'net/gaim')
-rw-r--r-- | net/gaim/Makefile | 1 | ||||
-rw-r--r-- | net/gaim/files/patch-src_protocols_oscar_oscar.c | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/net/gaim/Makefile b/net/gaim/Makefile index 9baad7faba59..484c89f2ee94 100644 --- a/net/gaim/Makefile +++ b/net/gaim/Makefile @@ -6,6 +6,7 @@ PORTNAME= gaim PORTVERSION= 0.78 +PORTREVISION= 1 CATEGORIES?= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff --git a/net/gaim/files/patch-src_protocols_oscar_oscar.c b/net/gaim/files/patch-src_protocols_oscar_oscar.c new file mode 100644 index 000000000000..050faa3b1966 --- /dev/null +++ b/net/gaim/files/patch-src_protocols_oscar_oscar.c @@ -0,0 +1,11 @@ +--- src/protocols/oscar/oscar.c.orig Tue Jun 1 18:12:11 2004 ++++ src/protocols/oscar/oscar.c Tue Jun 1 18:12:58 2004 +@@ -3127,7 +3127,7 @@ + * Note: There *may* be some clients which send messages as HTML formatted - + * they need to be special-cased somehow. + */ +- if (isdigit(gaim_account_get_username(account)[0]) && isdigit(userinfo->sn[0])) { ++ if (isdigit(gaim_account_get_username(account)[0]) && isdigit(userinfo->sn[0]) && g_strncasecmp(tmp, "<HTML>", 6)) { + /* being recevied by ICQ from ICQ - escape HTML so it is displayed as sent */ + gchar *tmp2 = gaim_escape_html(tmp); + g_free(tmp); |