org.guifications.plugins: 68dd90e2903587b389eabdda66ac49486226cbba
rekkanoryo at guifications.org
rekkanoryo at guifications.org
Sat Apr 12 19:45:08 CDT 2008
-----------------------------------------------------------------
Revision: 68dd90e2903587b389eabdda66ac49486226cbba
Ancestor: cc6f1874a13082f5e12a07380321be62575a9d0d
Author: rekkanoryo at guifications.org
Date: 2008-04-12T23:55:59
Branch: org.guifications.plugins
Modified files:
irssi/textfmt.c
ChangeLog:
This *should* fix the bug pointed indirectly reported in #pidgin by dubkat
where the irssi plugin doesn't respect the lack of the PURPLE_CONNECTION_HTML
flag and thus forces sending HTML over the wire always.
-----------------------------------------------------------------
This revision's diffstat output:
textfmt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
-------------- next part --------------
============================================================
--- irssi/textfmt.c 70d6b3788fb6bf8fbdeea8d18204b426784e869e
+++ irssi/textfmt.c 9dd3bc2afebd9196a35d845c4c98ceee4367cf59
@@ -60,7 +60,7 @@ enum {
if(!(account)->gc) \
return FALSE; \
\
- if(!(account)->gc->flags & PURPLE_CONNECTION_HTML) \
+ if(!((account)->gc->flags & PURPLE_CONNECTION_HTML)) \
return FALSE; \
\
if(!(message)) \
More information about the Plugins-commits
mailing list