# HG changeset patch # User Richard Laager # Date 1130201904 0 # Node ID 648637d0a9313f5a545ee0b560d73e252b381720 # Parent b4602ccb4e69871837db728c86612217a281cf2f [gaim-migrate @ 14095] Don't log messages with the GAIM_MESSAGE_NO_LOG flag set. I'm not sure when this regressed, but it was probably my fault. :) committer: Tailor Script diff -r b4602ccb4e69 -r 648637d0a931 src/conversation.c --- a/src/conversation.c Mon Oct 24 23:13:50 2005 +0000 +++ b/src/conversation.c Tue Oct 25 00:58:24 2005 +0000 @@ -905,7 +905,7 @@ } } - if (gaim_conversation_is_logging(conv)) { + if (!(flags & GAIM_MESSAGE_NO_LOG) && gaim_conversation_is_logging(conv)) { GList *log; if (conv->logs == NULL)