comparison src/conversation.c @ 4311:f38956587637

[gaim-migrate @ 4565] breaking the log viewwer before we have a replacement log viewwer is bad(tm) committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Mon, 13 Jan 2003 21:35:49 +0000
parents 5978e3d53f29
children 0c68d402f59f
comparison
equal deleted inserted replaced
4310:f4bb4d2dff9e 4311:f38956587637
148 148
149 fd = open_log_file(c->name, c->is_chat); 149 fd = open_log_file(c->name, c->is_chat);
150 if (fd) { 150 if (fd) {
151 if (!(logging_options & OPT_LOG_STRIP_HTML)) 151 if (!(logging_options & OPT_LOG_STRIP_HTML))
152 fprintf(fd, 152 fprintf(fd,
153 _("<HR><BR><H3 Align=Center> ---- New Conversation @ %s ----</H3><BR>\n"), 153 "<HR><BR><H3 Align=Center> ---- New Conversation @ %s ----</H3><BR>\n",
154 full_date()); 154 full_date());
155 else 155 else
156 fprintf(fd, _(" ---- New Conversation @ %s ----\n"), full_date()); 156 fprintf(fd, " ---- New Conversation @ %s ----\n", full_date());
157 fclose(fd); 157 fclose(fd);
158 } else 158 } else
159 /* do we want to do something here? */ ; 159 /* do we want to do something here? */ ;
160 } 160 }
161 161