From: <ro...@us...> - 2006-06-16 03:06:35
|
Revision: 16265 Author: roast Date: 2006-06-15 20:06:31 -0700 (Thu, 15 Jun 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16265&view=rev Log Message: ----------- corrected the closing tag in the ULF logger Modified Paths: -------------- branches/soc-2006-file-loggers/src/log.c Modified: branches/soc-2006-file-loggers/src/log.c =================================================================== --- branches/soc-2006-file-loggers/src/log.c 2006-06-15 01:51:10 UTC (rev 16264) +++ branches/soc-2006-file-loggers/src/log.c 2006-06-16 03:06:31 UTC (rev 16265) @@ -1071,7 +1071,7 @@ if (data->file) { const char *date = gaim_utf8_strftime("%F %T%z", localtime(NULL)); fprintf(data->file, "\t<event time=\"%s\" type=\"logEnd\" />\n", date); - fprintf(data->file, "</conversation>\n"); + fprintf(data->file, "</chat>\n"); fclose(data->file); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |