Update of /cvsroot/gaim/gaim/src
In directory usw-pr-cvs1:/tmp/cvs-serv13486
Modified Files:
perl.c
Log Message:
John Watson fixes more things :)
Index: perl.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/perl.c,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -d -r1.65 -r1.66
--- perl.c 2001/11/05 20:41:52 1.65
+++ perl.c 2001/11/08 08:20:43 1.66
@@ -761,7 +761,7 @@
char *tmp2, *tmp3;
tmp2 = g_strdup(escape_quotes(arg2));
tmp3 = arg3 ? g_strdup(escape_quotes(arg3)) : g_malloc0(1);
- buf = g_strdup_printf("'%lu','\"%s\"','%s'", (unsigned long)arg1, tmp2, tmp3);
+ buf = g_strdup_printf("'%lu','%s','%s'", (unsigned long)arg1, tmp2, tmp3);
g_free(tmp2);
g_free(tmp3);
}
|