Update of /cvsroot/gaim/gaim/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15538/src
Modified Files:
log.c
Log Message:
It seems like we should have a newline at the end of HTML logs. It's late and this is untested, but I can't imagine what it would break. (Yeah, yeah, famous last words.)
Index: log.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/log.c,v
retrieving revision 1.135
retrieving revision 1.136
diff -u -d -p -r1.135 -r1.136
--- log.c 11 Jan 2006 22:55:14 -0000 1.135
+++ log.c 15 Jan 2006 07:43:09 -0000 1.136
@@ -983,7 +983,7 @@ static void html_logger_finalize(GaimLog
GaimLogCommonLoggerData *data = log->logger_data;
if (data) {
if(data->file) {
- fprintf(data->file, "</body></html>");
+ fprintf(data->file, "</body></html>\n");
fclose(data->file);
}
g_free(data->path);
|