comparison src/conversation.c @ 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 dfdc286878f9
children 2bee8d023e23
comparison
equal deleted inserted replaced
11803:b4602ccb4e69 11804:648637d0a931
903 alias = gaim_buddy_get_contact_alias(b); 903 alias = gaim_buddy_get_contact_alias(b);
904 } 904 }
905 } 905 }
906 } 906 }
907 907
908 if (gaim_conversation_is_logging(conv)) { 908 if (!(flags & GAIM_MESSAGE_NO_LOG) && gaim_conversation_is_logging(conv)) {
909 GList *log; 909 GList *log;
910 910
911 if (conv->logs == NULL) 911 if (conv->logs == NULL)
912 open_log(conv); 912 open_log(conv);
913 913