changeset 11804:648637d0a931

[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 <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Tue, 25 Oct 2005 00:58:24 +0000
parents b4602ccb4e69
children 615c2fd3d72e
files src/conversation.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)