Update of /cvsroot/gaim/gaim/plugins
In directory sc8-pr-cvs1:/tmp/cvs-serv21452/plugins
Modified Files:
history.c
Log Message:
prpl-specific normalize is back, after my crusade to kill it.
Index: history.c
===================================================================
RCS file: /cvsroot/gaim/gaim/plugins/history.c,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -p -r1.23 -r1.24
--- history.c 13 Oct 2003 21:51:53 -0000 1.23
+++ history.c 14 Oct 2003 05:07:37 -0000 1.24
@@ -24,7 +24,7 @@ static void historize(GaimConversation *
struct stat st;
FILE *fd;
char *userdir = g_strdup(gaim_user_dir());
- char *logfile = g_strdup_printf("%s.log", gaim_normalize(name));
+ char *logfile = g_strdup_printf("%s.log", gaim_normalize(c->account, name));
char *path = g_build_filename(userdir, "logs", logfile, NULL);
char buf[HISTORY_SIZE+1];
char *tmp, *tmp2;
|